diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 14:12:40 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 14:12:40 +0000 |
commit | 3c8c91e6df3fae6a4290aeeedc0170731f672320 (patch) | |
tree | c6f75d31c2705e20e06a9c6682fd2e14b5fdf6fa /plugins/SendScreenshotPlus | |
parent | f513f611c525310554d153aa1fe02d06a40ea49f (diff) |
- muuid standardization (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3338 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus')
-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/"
|