#include
BOOL __stdcall
DllMain(HINSTANCE hDllInstance, DWORD dwReason, LPVOID
lpReserved)
{
/* BreakPoint(); */
switch (dwReason) {
case DLL_PROCESS_ATTACH:
/* initialization code here */
break;
case DLL_PROCESS_DETACH:
/* clean-up code here */
break;
}
return(TRUE);
}