mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
25 lines
499 B
C
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;
|
|
}
|