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/Yahoo/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/Yahoo/src')
-rw-r--r-- | protocols/Yahoo/src/main.cpp | 12 | ||||
-rw-r--r-- | protocols/Yahoo/src/version.h | 9 |
2 files changed, 15 insertions, 6 deletions
diff --git a/protocols/Yahoo/src/main.cpp b/protocols/Yahoo/src/main.cpp index 758c018bce..e7f96840f9 100644 --- a/protocols/Yahoo/src/main.cpp +++ b/protocols/Yahoo/src/main.cpp @@ -28,13 +28,13 @@ int hLangpack; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- "Yahoo Protocol",
+ __PLUGIN_NAME,
__VERSION_DWORD,
- "Yahoo Protocol support for Miranda NG.",
- "Gennady Feldman",
- "gena01@miranda-im.org",
- "© 2003-2010 Gennady Feldman, Laurent Marechal",
- "http://miranda-ng.org/",
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE, //not transient
{0xaa7bfea, 0x1fc7, 0x45f0, {0x90, 0x6e, 0x2a, 0x46, 0xb6, 0xe1, 0x19, 0xcf}} // {0AA7BFEA-1FC7-45f0-906E-2A46B6E119CF}
};
diff --git a/protocols/Yahoo/src/version.h b/protocols/Yahoo/src/version.h index 0231d7a7ea..3137a6c3a5 100644 --- a/protocols/Yahoo/src/version.h +++ b/protocols/Yahoo/src/version.h @@ -1,3 +1,12 @@ #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 "Yahoo Protocol"
+#define __DESCRIPTION "Yahoo Protocol support for Miranda NG."
+#define __AUTHOR "Gennady Feldman"
+#define __AUTHOREMAIL "gena01@miranda-im.org"
+#define __COPYRIGHT "© 2003-2010 Gennady Feldman, Laurent Marechal"
+#define __AUTHORWEB "http://miranda-ng.org/"
+
|