diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-16 13:28:32 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-16 13:28:32 +0000 |
commit | 0d1ad2f90e46278508b14cfb76ab8296ada78366 (patch) | |
tree | f3fdb29a749862d9882b7e1623b87860e4c7dfea /protocols/IcqOscarJ/src | |
parent | 4d8a575e275f4401da577c97720559fb734f7dc3 (diff) |
added some plugins descriptions for langpacks
git-svn-id: http://svn.miranda-ng.org/main/trunk@5385 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src')
-rw-r--r-- | protocols/IcqOscarJ/src/init.cpp | 12 | ||||
-rw-r--r-- | protocols/IcqOscarJ/src/version.h | 8 |
2 files changed, 14 insertions, 6 deletions
diff --git a/protocols/IcqOscarJ/src/init.cpp b/protocols/IcqOscarJ/src/init.cpp index a23b01554e..b10a20e456 100644 --- a/protocols/IcqOscarJ/src/init.cpp +++ b/protocols/IcqOscarJ/src/init.cpp @@ -41,13 +41,13 @@ HANDLE hExtraXStatus; PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "IcqOscarJ Protocol",
+ __PLUGIN_NAME,
__VERSION_DWORD,
- "ICQ protocol support for Miranda NG.",
- "Joe Kucera, Bio, Martin \xd6" "berg, Richard Hughes, Jon Keating, etc",
- "jokusoftware@miranda-im.org",
- "(C) 2000-2010 M.\xd6" "berg, R.Hughes, J.Keating, Bio, Angeli-Ka, G.Hazan, J.Kucera",
- "http://miranda-ng.org/",
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE, //doesn't replace anything built-in
{0x73a9615c, 0x7d4e, 0x4555, {0xba, 0xdb, 0xee, 0x5, 0xdc, 0x92, 0x8e, 0xff}} // {73A9615C-7D4E-4555-BADB-EE05DC928EFF}
};
diff --git a/protocols/IcqOscarJ/src/version.h b/protocols/IcqOscarJ/src/version.h index 0231d7a7ea..0140e33466 100644 --- a/protocols/IcqOscarJ/src/version.h +++ b/protocols/IcqOscarJ/src/version.h @@ -1,3 +1,11 @@ #define __FILEVERSION_STRING 0,11,0,1
#define __VERSION_STRING "0.11.0.1"
#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0, 11, 0, 1)
+
+#define __PLUGIN_NAME "IcqOscarJ Protocol"
+#define __DESCRIPTION "ICQ protocol support for Miranda NG."
+#define __AUTHOR "Joe Kucera, Bio, Martin \xd6" "berg, Richard Hughes, Jon Keating, etc"
+#define __AUTHOREMAIL "jokusoftware@miranda-im.org"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "(C) 2000-2010 M.\xd6" "berg, R.Hughes, J.Keating, Bio, Angeli-Ka, G.Hazan, J.Kucera"
+
|