From 48540940b6c28bb4378abfeb500ec45a625b37b6 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 15 May 2012 10:38:20 +0000 Subject: initial commit git-svn-id: http://svn.miranda-ng.org/main/trunk@2 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/modernopt/main.cpp | 79 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 plugins/modernopt/main.cpp (limited to 'plugins/modernopt/main.cpp') diff --git a/plugins/modernopt/main.cpp b/plugins/modernopt/main.cpp new file mode 100644 index 0000000000..dd40c325e9 --- /dev/null +++ b/plugins/modernopt/main.cpp @@ -0,0 +1,79 @@ + +#include "commonheaders.h" + +PLUGINLINK *pluginLink; +HINSTANCE hInst; +MM_INTERFACE mmi; +LIST_INTERFACE li; + +#if defined( _UNICODE ) + // {621f886b-a7f6-457f-9d62-8ee84c275993} + #define MIID_MODERNOPTS { 0x621f886b, 0xa7f6, 0x457f, { 0x9d, 0x62, 0x8e, 0xe8, 0x4c, 0x27, 0x59, 0x93 }} +#else + // {0a8e1133-d12d-4103-a912-39 96 3b 49 b3 5f} + #define MIID_MODERNOPTS { 0x0a8e1133, 0xd12d, 0x4103, { 0xa9, 0x12, 0x39, 0x96, 0x3b, 0x49, 0xb3, 0x5f }} +#endif + +PLUGININFOEX pluginInfoEx = { + sizeof(PLUGININFOEX), + "Support for new options design", + PLUGIN_MAKE_VERSION(0,1,0,0), + "Support for new options design.", + "Victor Pavlychko, George Hazan", + "ghazan@miranda-im.org", + "é 2009 Victor Pavlychko, George Hazan", + "http://www.miranda-im.org", + UNICODE_AWARE, + 0, + MIID_MODERNOPTS +}; + +BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) +{ + hInst = hinstDLL; + return TRUE; +} + +///////////////////////////////////////////////////////////////////////////////////////// +// MirandaPluginInfoEx - returns an information about a plugin + +extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) +{ + if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 8, 0, 0)) + return NULL; + + return &pluginInfoEx; +} + +///////////////////////////////////////////////////////////////////////////////////////// +// MirandaPluginInterfaces - returns the protocol interface to the core + +static const MUUID interfaces[] = { MIID_MODERNOPTS, MIID_LAST }; + +extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) +{ + return interfaces; +} + +///////////////////////////////////////////////////////////////////////////////////////// +// Performs a primary set of actions upon plugin loading + +int LoadModernOptsModule(); + +extern "C" int __declspec(dllexport) Load(PLUGINLINK *link) +{ + pluginLink = link; + mir_getMMI( &mmi ); + mir_getLI( &li ); + + LoadModernOptsModule(); + return 0; +} + +///////////////////////////////////////////////////////////////////////////////////////// +// Unload a plugin + +extern "C" int __declspec(dllexport) Unload(void) +{ + return 0; +} -- cgit v1.2.3