diff options
Diffstat (limited to 'protocols/MRA/src')
-rw-r--r-- | protocols/MRA/src/Mra.cpp | 2 | ||||
-rw-r--r-- | protocols/MRA/src/Mra.h | 3 | ||||
-rw-r--r-- | protocols/MRA/src/version.h | 18 |
3 files changed, 17 insertions, 6 deletions
diff --git a/protocols/MRA/src/Mra.cpp b/protocols/MRA/src/Mra.cpp index 961e8f1d3e..d0a32f7aa3 100644 --- a/protocols/MRA/src/Mra.cpp +++ b/protocols/MRA/src/Mra.cpp @@ -6,7 +6,7 @@ int hLangpack; PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
PROTOCOL_DISPLAY_NAME_ORIGA,
- __VERSION_DWORD,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
"Mail.ru Agent (MRA) protocol support for Miranda NG.",
"Rozhuk Ivan",
"Rozhuk_I@mail.ru",
diff --git a/protocols/MRA/src/Mra.h b/protocols/MRA/src/Mra.h index b3d2e5f521..a6b234c6d0 100644 --- a/protocols/MRA/src/Mra.h +++ b/protocols/MRA/src/Mra.h @@ -73,6 +73,9 @@ #include <m_nudge.h>
#include <m_proto_listeningto.h>
+#define PROTO_VERSION_MAJOR 1
+#define PROTO_VERSION_MINOR 21
+
#include "resource.h"
#include "..\xstatus_MRA\src\resource.h"
diff --git a/protocols/MRA/src/version.h b/protocols/MRA/src/version.h index f8c4fb2be7..85381a098d 100644 --- a/protocols/MRA/src/version.h +++ b/protocols/MRA/src/version.h @@ -1,6 +1,14 @@ -#define __FILEVERSION_STRING 2, 1, 0, 2
-#define __VERSION_STRING "2.1.0.2"
-#define __VERSION_DWORD PLUGIN_MAKE_VERSION(2, 1, 0, 2)
+#define __MAJOR_VERSION 2
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 3
-#define PROTO_VERSION_MAJOR 1
-#define PROTO_VERSION_MINOR 21
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+
+#define __PLUGIN_NAME "MRA"
+#define __FILENAME "MRA.dll"
+#define __DESCRIPTION "Miranda Mail.ru Agent protocol plugin."
+#define __AUTHOR "Ivan Rozhuk"
+#define __AUTHOREMAIL "Rozhuk_I@mail.ru"
+#define __AUTHORWEB "http://miranda-ng.org/p/MRA/"
+#define __COPYRIGHT "© 2005-2009 Rozhuk Ivan"
|