Skip to content

Commit 6b95b30

Browse files
authored
💡 remove deprecated LoadLibrary64
1 parent 76e2293 commit 6b95b30

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

yapi.hpp

-13
Original file line numberDiff line numberDiff line change
@@ -596,19 +596,6 @@ namespace yapi {
596596
return FALSE;
597597
}
598598

599-
DWORD64 WINAPI LoadLibrary64(const TCHAR* filePath)
600-
{
601-
static X64Call LdrLoadDll("LdrLoadDll");
602-
if (!LdrLoadDll) return 0;
603-
604-
DWORD64 module = 0;
605-
DWORD64 status = LdrLoadDll(0, 0, filePath, &module);
606-
if (!status) return module;
607-
608-
SetLastError64(status);
609-
return NULL;
610-
}
611-
612599
HANDLE WINAPI CreateRemoteThread64(HANDLE hProcess,
613600
LPSECURITY_ATTRIBUTES lpThreadAttributes,
614601
SIZE_T dwStackSize,

0 commit comments

Comments
 (0)