Example-Extension/ExampleExtension/dllmain.cpp

19 lines
930 B
C++
Raw Normal View History

2018-07-12 08:07:22 +08:00
<EFBFBD><EFBFBD>// dllmain.cpp : Defines the entry point for the DLL application.
//Run at the same time as NextHooker is loaded.
//Put initialization code here.
2018-05-26 18:22:38 +08:00
#include "stdafx.h"
2018-07-12 08:07:22 +08:00
BOOL WINAPI DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
2018-05-26 18:22:38 +08:00
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}