reactos/dll/win32/netevent/netevent.c
Timo Kreuzer e279aa2082 Sync to trunk (r47832)
svn path=/branches/reactos-yarotows/; revision=47833
2010-06-23 16:21:41 +00:00

25 lines
499 B
C

/*
* PROJECT: ReactOS Network Event Handler
* LICENSE: GPL - See COPYING in the top level directory
* FILE: dll/win32/netevent/netevent.c
* PURPOSE: Dummy main file
* COPYRIGHT: Eric Kohl
*/
#include <windows.h>
BOOL
WINAPI
DllMain(IN HINSTANCE hinstDLL,
IN DWORD dwReason,
IN LPVOID lpvReserved)
{
switch (dwReason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hinstDLL);
break;
}
return TRUE;
}