NEURON
dllhead.cpp
Go to the documentation of this file.
1
#include <windows.h>
2
#pragma argsused
3
BOOL WINAPI
DllEntryPoint
(HINSTANCE hinstDLL, DWORD fdwReason,
4
LPVOID lpvReserved)
5
{
6
switch
(fdwReason)
7
{
8
case
DLL_PROCESS_ATTACH :
break
;
9
case
DLL_PROCESS_DETACH :
break
;
10
}
11
return
TRUE
;
12
}
TRUE
#define TRUE
Definition:
err.c:57
DllEntryPoint
BOOL WINAPI DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
Definition:
dllhead.cpp:3
src
mswin
extra
dllhead.cpp