[SHELL32] CDrivesFolder: Implement the eject and disconnect menu items. CORE-13841
[reactos.git] / 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 }