diff options
Diffstat (limited to 'plugins/SendScreenshotPlus/src')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 4 | ||||
-rw-r--r-- | plugins/SendScreenshotPlus/src/version.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index 1eb2bc387d..4cb19a1e5b 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -46,7 +46,8 @@ PLUGININFOEX pluginInfo={ __COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE, //doesn't replace anything built-in
- MIID_PLUGIN
+ // {ED39AF7C-BECD-404e-9499-4D04F711B9CB}
+ { 0xed39af7c, 0xbecd, 0x404e, { 0x94, 0x99, 0x4d, 0x04, 0xf7, 0x11, 0xb9, 0xcb } }
};
//static char szSendSS[]=SZ_SENDSS;
@@ -86,7 +87,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfo;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PLUGIN, MIID_LAST };
/*---------------------------------------------------------------------------
* Initializes the services provided and the link to those needed
diff --git a/plugins/SendScreenshotPlus/src/version.h b/plugins/SendScreenshotPlus/src/version.h index 3b88228a1e..85f72f59f1 100644 --- a/plugins/SendScreenshotPlus/src/version.h +++ b/plugins/SendScreenshotPlus/src/version.h @@ -19,9 +19,6 @@ #define __COPYRIGHT "© 2010 Merlin, © 2004-2006 Sergio Vieira Rolanski"
#define __AUTHORWEB "http://miranda-ng.org/"
-#ifndef MIID_PLUGIN // {ED39AF7C-BECD-404e-9499-4D04F711B9CB}
-#define MIID_PLUGIN { 0xed39af7c, 0xbecd, 0x404e, { 0x94, 0x99, 0x4d, 0x04, 0xf7, 0x11, 0xb9, 0xcb } }
-#endif
#define __PLUGIN_NAME "Send Screenshot+"
#define __FLVersionURL "http://miranda-ng.org/"
|