mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 14:19:25 +00:00
14 lines
258 B
C
14 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;
|
|
}
|