pykd/pykd_bootstrapper/dllmain.cpp
SND\ussrhero_cp 16ebf54df7 [0.3.x] added : pykd.dll ( bootstrapper for windbg )
git-svn-id: https://pykd.svn.codeplex.com/svn@90068 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-03 15:24:07 +04:00

20 lines
410 B
C++

// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}