diff options
Diffstat (limited to 'CodeExecution/DemoReflectiveDLL/DemoDLL/dllmain.cpp')
-rw-r--r-- | CodeExecution/DemoReflectiveDLL/DemoDLL/dllmain.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/CodeExecution/DemoReflectiveDLL/DemoDLL/dllmain.cpp b/CodeExecution/DemoReflectiveDLL/DemoDLL/dllmain.cpp deleted file mode 100644 index 69b5891..0000000 --- a/CodeExecution/DemoReflectiveDLL/DemoDLL/dllmain.cpp +++ /dev/null @@ -1,19 +0,0 @@ -// 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; -} - |