Revert tree-restructure attempt: r66583, r66582, r66581, r66578, sauf ntdll changes...
[reactos.git] / reactos / dll / win32 / kernel32_vista / DllMain.c
1
2 #include "k32_vista.h"
3
4 BOOL
5 WINAPI
6 DllMain(HANDLE hDll,
7 DWORD dwReason,
8 LPVOID lpReserved)
9 {
10 /* For now, there isn't much to do */
11 if (dwReason == DLL_PROCESS_ATTACH)
12 DisableThreadLibraryCalls(hDll);
13 return TRUE;
14 }