1 /* 2 * PROJECT: ReactOS system libraries 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: dll/win32/wlnotify/wlnotify.c 5 * PURPOSE: Winlogon notifications 6 * PROGRAMMER: Eric Kohl 7 */ 8 9 #include "precomp.h" 10 11 WINE_DEFAULT_DEBUG_CHANNEL(wlnotify); 12 13 14 BOOL 15 WINAPI 16 DllMain( 17 HINSTANCE hInstance, 18 DWORD dwReason, 19 LPVOID lpReserved) 20 { 21 switch (dwReason) 22 { 23 case DLL_PROCESS_ATTACH: 24 DisableThreadLibraryCalls(hInstance); 25 break; 26 } 27 28 return TRUE; 29 } 30 31 /* EOF */ 32