From f920ef497f3299ae24fe783ce03bdd93b419f764 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 18 May 2012 22:02:50 +0000 Subject: plugins folders renaming git-svn-id: http://svn.miranda-ng.org/main/trunk@60 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/modernopt/main.cpp | 81 ---------------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 plugins/modernopt/main.cpp (limited to 'plugins/modernopt/main.cpp') diff --git a/plugins/modernopt/main.cpp b/plugins/modernopt/main.cpp deleted file mode 100644 index 5adb79cc25..0000000000 --- a/plugins/modernopt/main.cpp +++ /dev/null @@ -1,81 +0,0 @@ - -#include "commonheaders.h" - -PLUGINLINK *pluginLink; -HINSTANCE hInst; -MM_INTERFACE mmi; -LIST_INTERFACE li; -int hLangpack; - -#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 ); - mir_getLP(&pluginInfoEx); - - LoadModernOptsModule(); - return 0; -} - -///////////////////////////////////////////////////////////////////////////////////////// -// Unload a plugin - -extern "C" int __declspec(dllexport) Unload(void) -{ - return 0; -} -- cgit v1.2.3