summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/main.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-05-02 18:11:42 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-05-02 18:11:42 +0000
commita00df015c7408935b9edf33da47cdd9c89f50de7 (patch)
treefab1290a06483e1c0cbc07e631ad99f03088e499 /plugins/Dropbox/src/main.cpp
parentdd8eb413a02d175573a30bedc01b06e5dad9af9d (diff)
Dropbox and Proto_Dropbox - unified projects
git-svn-id: http://svn.miranda-ng.org/main/trunk@13384 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/main.cpp')
-rw-r--r--plugins/Dropbox/src/main.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/main.cpp b/plugins/Dropbox/src/main.cpp
new file mode 100644
index 0000000000..590b9802c4
--- /dev/null
+++ b/plugins/Dropbox/src/main.cpp
@@ -0,0 +1,49 @@
+#include "stdafx.h"
+
+int hLangpack;
+CDropbox *dropbox;
+HINSTANCE g_hInstance;
+
+PLUGININFOEX pluginInfo =
+{
+ sizeof(PLUGININFOEX),
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
+ UNICODE_AWARE,
+ // {B908773A-86F7-4A91-8674-6A20BA0E67D1}
+ {0xb908773a, 0x86f7, 0x4a91, {0x86, 0x74, 0x6a, 0x20, 0xba, 0xe, 0x67, 0xd1}}
+
+};
+
+DWORD WINAPI DllMain(HINSTANCE hInstance, DWORD, LPVOID)
+{
+ g_hInstance = hInstance;
+
+ return TRUE;
+}
+
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
+{
+ return &pluginInfo;
+}
+
+extern "C" int __declspec(dllexport) Load(void)
+{
+ mir_getLP(&pluginInfo);
+
+ dropbox = new CDropbox();
+
+ return 0;
+}
+
+extern "C" int __declspec(dllexport) Unload(void)
+{
+ delete dropbox;
+
+ return 0;
+} \ No newline at end of file