mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
12 lines
359 B
C
12 lines
359 B
C
#include <oscalls.h>
|
|
#define _DECL_DLLMAIN
|
|
#include <process.h>
|
|
|
|
WINBOOL WINAPI DllMain (HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
|
|
{
|
|
/* If the DLL provides no DllMain, then chances are that it doesn't bother with thread initialization */
|
|
if(dwReason == DLL_PROCESS_ATTACH)
|
|
DisableThreadLibraryCalls(hDllHandle);
|
|
return TRUE;
|
|
}
|