diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 13:45:45 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 13:45:45 +0000 |
commit | f513f611c525310554d153aa1fe02d06a40ea49f (patch) | |
tree | 323460801f3a3aa1e780135110492206b8ccddf6 /plugins/MenuItemEx | |
parent | 7e367862550616802b29a38067bbc1b49e81a10c (diff) |
- muuid standardization (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3337 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MenuItemEx')
-rw-r--r-- | plugins/MenuItemEx/src/main.cpp | 5 | ||||
-rw-r--r-- | plugins/MenuItemEx/src/version.h | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/plugins/MenuItemEx/src/main.cpp b/plugins/MenuItemEx/src/main.cpp index 99b0d49b04..a865432ab9 100644 --- a/plugins/MenuItemEx/src/main.cpp +++ b/plugins/MenuItemEx/src/main.cpp @@ -91,7 +91,9 @@ PLUGININFOEX pluginInfoEx = { __COPYRIGHTS,
__WEB,
UNICODE_AWARE,
- MIID_MENUEX
+ // {b1902a52-9114-4d7e-ac2e-b3a52e01d574}
+ {0xb1902a52, 0x9114, 0x4d7e, { 0xac, 0x2e, 0xb3, 0xa5, 0x2e, 0x01, 0xd5, 0x74 }}
+
};
struct ModSetLinkLinkItem { // code from dbe++ plugin by Bio
@@ -1276,7 +1278,6 @@ static int PluginInit(WPARAM wparam,LPARAM lparam) return 0;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_MENUEX, MIID_LAST};
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
diff --git a/plugins/MenuItemEx/src/version.h b/plugins/MenuItemEx/src/version.h index cbdca1899f..eecf13f52e 100644 --- a/plugins/MenuItemEx/src/version.h +++ b/plugins/MenuItemEx/src/version.h @@ -9,5 +9,3 @@ #define __EMAIL "micron@nexgo.de, baloo@bk.ru, tatarinov.sergey@gmail.com, robyer@seznam.cz"
#define __COPYRIGHTS "© 2001-03 Heiko Schillinger, © 2006-08 Baloo, © 2009-10 Billy_Bons, © 2011-12 Robert Posel"
-// {b1902a52-9114-4d7e-ac2e-b3a52e01d574}
-#define MIID_MENUEX {0xb1902a52, 0x9114, 0x4d7e, { 0xac, 0x2e, 0xb3, 0xa5, 0x2e, 0x01, 0xd5, 0x74 }}
|