You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
805 B
41 lines
805 B
//
|
|
// dllmain.cpp
|
|
//
|
|
// DllMain module entry point.
|
|
//
|
|
|
|
#include "globals.h"
|
|
#include "snoop.h"
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// DllMain
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID pvReserved)
|
|
{
|
|
switch (dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
g_hInst = hInstance;
|
|
|
|
if (!InitializeCriticalSectionAndSpinCount(&g_cs, 0))
|
|
return FALSE;
|
|
|
|
CSnoopWnd::_InitClass();
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
CSnoopWnd::_UninitClass();
|
|
|
|
DeleteCriticalSection(&g_cs);
|
|
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|