mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 14:45:12 +00:00
11 lines
232 B
C
11 lines
232 B
C
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
|
|
(void)hinstDLL;
|
|
(void)lpReserved;
|
|
if (fdwReason == DLL_PROCESS_ATTACH) {
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|