diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 08:32:31 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 08:32:31 +0000 |
commit | 73e40c0b5ceedc93c111530c71bc5dc798390bcb (patch) | |
tree | 997acb691537e18591a7da13f1045be4aca69233 /protocols | |
parent | 9e9d4543d3558a5c611a6fd1c375540c1088df16 (diff) |
- muuid standardization (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3332 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/GTalkExt/src/GTalkExt.cpp | 3 | ||||
-rw-r--r-- | protocols/Xfire/src/main.cpp | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/protocols/GTalkExt/src/GTalkExt.cpp b/protocols/GTalkExt/src/GTalkExt.cpp index 7b37e43eb3..e40df25053 100644 --- a/protocols/GTalkExt/src/GTalkExt.cpp +++ b/protocols/GTalkExt/src/GTalkExt.cpp @@ -31,7 +31,6 @@ int hLangpack;
-#define MIID_PLUGINIFACE {0x08B86253, 0xEC6E, 0x4d09, { 0xB7, 0xA9, 0x64, 0xAC, 0xDF, 0x06, 0x27, 0xB8 }}
PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
@@ -43,7 +42,7 @@ PLUGININFOEX pluginInfo={ COPYRIGHT_STRING,
"http://miranda-ng.org/",
UNICODE_AWARE, //doesn't replace anything built-in
- MIID_PLUGINIFACE //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8}
+ {0x08B86253, 0xEC6E, 0x4d09, { 0xB7, 0xA9, 0x64, 0xAC, 0xDF, 0x06, 0x27, 0xB8 }} //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8}
};
extern DWORD g_mirandaVersion;
diff --git a/protocols/Xfire/src/main.cpp b/protocols/Xfire/src/main.cpp index e4f4000c1f..29c35c6d69 100644 --- a/protocols/Xfire/src/main.cpp +++ b/protocols/Xfire/src/main.cpp @@ -137,9 +137,8 @@ PLUGININFOEX pluginInfoEx={ "dufte@justmail.de",
"(c) 2012 Xfirelib by Herbert Poul, Xfire Miranda protocol plugin by dufte",
"http://miranda-ng.org",
- 0,
- // {9B8E1735-970D-4ce0-930C-A561956BDCA2}
- { 0x9b8e1735, 0x970d, 0x4ce0, { 0x93, 0xc, 0xa5, 0x61, 0x95, 0x6b, 0xdc, 0xa2 } }
+ UNICODE_AWARE,
+ { 0x9b8e1735, 0x970d, 0x4ce0, { 0x93, 0xc, 0xa5, 0x61, 0x95, 0x6b, 0xdc, 0xa2 } } // {9B8E1735-970D-4ce0-930C-A561956BDCA2}
};
static IconItem icon = { LPGEN("Protocol icon"), "XFIRE_main", IDI_TM };
|