reactos/dll/win32/kernel32_vista/DllMain.c
Amine Khaldi 42040abadc * Sync up to trunk head (r64377).
svn path=/branches/shell-experiments/; revision=64380
2014-09-28 20:18:27 +00:00

15 lines
253 B
C

#include "k32_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;
}