diff options
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber.cpp | 12 | ||||
-rw-r--r-- | protocols/JabberG/src/version.h | 9 |
2 files changed, 15 insertions, 6 deletions
diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index e18f261c55..020029e1f2 100644 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -48,13 +48,13 @@ TCHAR szCoreVersion[100]; PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "Jabber Protocol",
+ __PLUGIN_NAME,
__VERSION_DWORD,
- "Jabber protocol support for Miranda NG.",
- "George Hazan, Maxim Mluhov, Victor Pavlychko, Artem Shpynov, Michael Stepura",
- "ghazan@miranda.im",
- "(c) 2005-2012 George Hazan, Maxim Mluhov, Victor Pavlychko, Artem Shpynov, Michael Stepura",
- "http://miranda-ng.org/",
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
{0x144e80a2, 0xd198, 0x428b, {0xac, 0xbe, 0x9d, 0x55, 0xda, 0xcc, 0x7f, 0xde}} // {144E80A2-D198-428b-ACBE-9D55DACC7FDE}
};
diff --git a/protocols/JabberG/src/version.h b/protocols/JabberG/src/version.h index 2efdeac444..ce855433ba 100644 --- a/protocols/JabberG/src/version.h +++ b/protocols/JabberG/src/version.h @@ -1,3 +1,12 @@ #define __FILEVERSION_STRING 0,11,0,2
#define __VERSION_STRING "0.11.0.2"
#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0,11,0,2)
+
+
+#define __PLUGIN_NAME "Jabber Protocol"
+#define __DESCRIPTION "Jabber protocol support for Miranda NG."
+#define __AUTHOR "George Hazan, Maxim Mluhov, Victor Pavlychko, Artem Shpynov, Michael Stepura"
+#define __AUTHOREMAIL "ghazan@miranda.im"
+#define __COPYRIGHT "(c) 2005-2012 George Hazan, Maxim Mluhov, Victor Pavlychko, Artem Shpynov, Michael Stepura"
+#define __AUTHORWEB "http://miranda-ng.org/"
+
|