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 /plugins/StatusPlugins/KeepStatus | |
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 'plugins/StatusPlugins/KeepStatus')
-rw-r--r-- | plugins/StatusPlugins/KeepStatus/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/StatusPlugins/KeepStatus/main.cpp b/plugins/StatusPlugins/KeepStatus/main.cpp index 972b144d5f..10cdc9a5df 100644 --- a/plugins/StatusPlugins/KeepStatus/main.cpp +++ b/plugins/StatusPlugins/KeepStatus/main.cpp @@ -45,8 +45,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) /////////////////////////////////////////////////////////////////////////////////////////
// returns plugin's extended information
-// {A5BB1B7A-B7CD-4cbb-A7DB-CEB4EB71DA49}
-#define MIID_KEEPSTATUS { 0xa5bb1b7a, 0xb7cd, 0x4cbb, { 0xa7, 0xdb, 0xce, 0xb4, 0xeb, 0x71, 0xda, 0x49 } }
PLUGININFOEX pluginInfoEx={
sizeof(PLUGININFOEX),
@@ -58,7 +56,7 @@ PLUGININFOEX pluginInfoEx={ __COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- MIID_KEEPSTATUS
+ { 0xa5bb1b7a, 0xb7cd, 0x4cbb, { 0xa7, 0xdb, 0xce, 0xb4, 0xeb, 0x71, 0xda, 0x49 } } // {A5BB1B7A-B7CD-4cbb-A7DB-CEB4EB71DA49}
};
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
|