Local-MT-Extension/ExampleExtension/dllmain.cpp

18 lines
974 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.
2018-07-31 15:40:54 +08:00
// Run at the same time as NextHooker is loaded or extension is added.
// Put initialization code here.
2018-09-02 01:21:35 +08:00
#include <Windows.h>
2018-05-26 18:22:38 +08:00
2018-09-02 01:21:35 +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;
}