summaryrefslogtreecommitdiff
path: root/plugins/PasteIt/dllmain.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-07-02 08:36:04 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-07-02 08:36:04 +0000
commit960bb20ccd3c375bcfc8b642fcbe89feaf143b22 (patch)
tree4fb859975861780dfc932e19513d9efd139924b1 /plugins/PasteIt/dllmain.cpp
parent61930b2a3c3fcbd8f40284ac77902806b2b3b493 (diff)
only add PasteIt, not adapted
git-svn-id: http://svn.miranda-ng.org/main/trunk@712 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt/dllmain.cpp')
-rw-r--r--plugins/PasteIt/dllmain.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/PasteIt/dllmain.cpp b/plugins/PasteIt/dllmain.cpp
new file mode 100644
index 0000000000..ad89773ec8
--- /dev/null
+++ b/plugins/PasteIt/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;
+}
+