diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-12 05:31:51 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-12 05:31:51 +0000 |
commit | 5ed4fc765e0a505064c49651eb06822ac9b90310 (patch) | |
tree | c0b39d11608ddff1fbfa539e5fc8f3a09e70ed45 /plugins/AVS/src | |
parent | 7fd44b9f7907e17770b65ca897ac677bb6ee1f1f (diff) |
AVS
standard version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@1880 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AVS/src')
-rw-r--r-- | plugins/AVS/src/main.cpp | 14 | ||||
-rw-r--r-- | plugins/AVS/src/version.h | 23 |
2 files changed, 27 insertions, 10 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 6e6555a117..0965be9877 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -96,13 +96,13 @@ FI_INTERFACE *fei = 0; PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
- "Avatar service",
- __VERSION_DWORD,
- "Load and manage contact pictures for other plugins.",
- "Nightwish, Pescuma",
- "",
- "Copyright 2000-2012 Miranda-IM project",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
// {E00F1643-263C-4599-B84B-053E5C511D29}
{ 0xe00f1643, 0x263c, 0x4599, { 0xb8, 0x4b, 0x5, 0x3e, 0x5c, 0x51, 0x1d, 0x29 } }
diff --git a/plugins/AVS/src/version.h b/plugins/AVS/src/version.h index 0231d7a7ea..11956d9f75 100644 --- a/plugins/AVS/src/version.h +++ b/plugins/AVS/src/version.h @@ -1,3 +1,20 @@ -#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 __MAJOR_VERSION 0
+#define __MINOR_VERSION 11
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 1
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
+
+#define __PLUGIN_NAME "Avatar service"
+#define __INTERNAL_NAME "AVS"
+#define __FILENAME "AVS.dll"
+#define __DESCRIPTION "Load and manage contact pictures for other plugins."
+#define __AUTHOR "Nightwish, Pescuma"
+#define __AUTHOREMAIL "http://miranda-ng.org/"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2000-2012 Miranda-IM project, 2012 Miranda NG team"
|