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/FirstRun | |
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/FirstRun')
-rw-r--r-- | plugins/FirstRun/src/commonheaders.h | 2 | ||||
-rw-r--r-- | plugins/FirstRun/src/main.cpp | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/FirstRun/src/commonheaders.h b/plugins/FirstRun/src/commonheaders.h index 1839f53fc1..57d991f65e 100644 --- a/plugins/FirstRun/src/commonheaders.h +++ b/plugins/FirstRun/src/commonheaders.h @@ -7,5 +7,3 @@ #include <m_system.h>
#include <m_protocols.h>
#include <m_database.h>
-
-#define MIID_FIRSTRUN {0x49c2cf54, 0x7898, 0x44de, { 0xbe, 0x3a, 0x6d, 0x2e, 0x4e, 0xf9, 0x0, 0x79 }} //{49c2cf54-7898-44de-be3a-6d2e4ef90079}
\ No newline at end of file diff --git a/plugins/FirstRun/src/main.cpp b/plugins/FirstRun/src/main.cpp index 3fe9131092..853086ef84 100644 --- a/plugins/FirstRun/src/main.cpp +++ b/plugins/FirstRun/src/main.cpp @@ -15,7 +15,8 @@ PLUGININFOEX pluginInfo={ "© 2008 Mikhail Yuriev",
"http://miranda-ng.org/",
UNICODE_AWARE,
- MIID_FIRSTRUN
+ //{49c2cf54-7898-44de-be3a-6d2e4ef90079}
+ {0x49c2cf54, 0x7898, 0x44de, { 0xbe, 0x3a, 0x6d, 0x2e, 0x4e, 0xf9, 0x0, 0x79 }}
};
int ModulesLoaded(WPARAM wParam,LPARAM lParam)
|