diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 16:19:36 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 16:19:36 +0000 |
commit | f08c16820a6bf1b1e9087909d604efbca8520808 (patch) | |
tree | 856bf2fdcaa091c010767cc804c11d4de04c19e0 /plugins/Boltun/src/boltun.cpp | |
parent | f439429a66636087d8194dafe099e515f861031b (diff) |
version info standartization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1994 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Boltun/src/boltun.cpp')
-rw-r--r-- | plugins/Boltun/src/boltun.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/plugins/Boltun/src/boltun.cpp b/plugins/Boltun/src/boltun.cpp index e19e207c29..25968b15a7 100644 --- a/plugins/Boltun/src/boltun.cpp +++ b/plugins/Boltun/src/boltun.cpp @@ -37,6 +37,7 @@ #include "resource.h"
#include "resource.h"
+#include "version.h"
#include "boltun.h"
#include "config.h"
@@ -57,18 +58,18 @@ BOOL blInit = FALSE; UINT pTimer = 0;
TCHAR *path;
-PLUGININFOEX pluginInfo={
+PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- BOLTUN_NAME,
- PLUGIN_MAKE_VERSION(0,0,3,0),
- PLUGIN_DESCRIPTION,
- "Alexander S. Kiselev, Valentin Pavlyuchenko",
- "Valentin.Pavlyuchenko@gmail.com",
- "© 2003-2008 Alexander S. Kiselev A.K.A. KAS, Valentin Pavlyuchenko",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
// {488C5C84-56DA-434F-96F1-B18900DEF760}
- { 0x488c5c84, 0x56da, 0x434f, { 0x96, 0xf1, 0xb1, 0x89, 0x0, 0xde, 0xf7, 0x60 } }
+ {0x488c5c84, 0x56da, 0x434f, {0x96, 0xf1, 0xb1, 0x89, 0x0, 0xde, 0xf7, 0x60}}
};
static HANDLE hEventDbEventAdded;
|