mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
15 lines
258 B
C
15 lines
258 B
C
|
|
||
|
#include "advapi32_vista.h"
|
||
|
|
||
|
BOOL
|
||
|
WINAPI
|
||
|
DllMain(HANDLE hDll,
|
||
|
DWORD dwReason,
|
||
|
LPVOID lpReserved)
|
||
|
{
|
||
|
/* For now, there isn't much to do */
|
||
|
if (dwReason == DLL_PROCESS_ATTACH)
|
||
|
DisableThreadLibraryCalls(hDll);
|
||
|
return TRUE;
|
||
|
}
|