mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
11 lines
359 B
C
11 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;
|
|
}
|