mirror of
https://github.com/x64dbg/ScyllaHide
synced 2026-08-11 18:26:03 -04:00
9 lines
No EOL
220 B
C++
9 lines
No EOL
220 B
C++
#include <ntdll/ntdll.h>
|
|
|
|
#pragma comment(linker, "/ENTRY:DllMain")
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
{
|
|
LdrDisableThreadCalloutsForDll(hinstDLL);
|
|
return TRUE;
|
|
} |