summaryrefslogtreecommitdiff
path: root/plugins/BasicHistory/src/dllmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/BasicHistory/src/dllmain.cpp')
-rw-r--r--plugins/BasicHistory/src/dllmain.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/BasicHistory/src/dllmain.cpp b/plugins/BasicHistory/src/dllmain.cpp
new file mode 100644
index 0000000000..ad89773ec8
--- /dev/null
+++ b/plugins/BasicHistory/src/dllmain.cpp
@@ -0,0 +1,14 @@
+// dllmain.cpp : Defines the entry point for the DLL application.
+#include "stdafx.h"
+
+HINSTANCE hInst;
+
+BOOL APIENTRY DllMain( HMODULE hModule,
+ DWORD ul_reason_for_call,
+ LPVOID lpReserved
+ )
+{
+ hInst = hModule;
+ return TRUE;
+}
+