diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-01 20:02:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-01 20:02:12 +0000 |
commit | 86e1ca2ee5833726d38628de1e91fa4953a55fa2 (patch) | |
tree | dcc853c67a9fffd6090fe342a8ac404e06266206 /protocols/WhatsApp/src/main.cpp | |
parent | 9ddf23d43daa108082ad5b0c65aa6c1657cb7a31 (diff) |
- token update;
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@13348 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/main.cpp')
-rw-r--r-- | protocols/WhatsApp/src/main.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/protocols/WhatsApp/src/main.cpp b/protocols/WhatsApp/src/main.cpp index d4d607f452..99b3fb1811 100644 --- a/protocols/WhatsApp/src/main.cpp +++ b/protocols/WhatsApp/src/main.cpp @@ -1,4 +1,5 @@ #include "common.h"
+#include "version.h"
CLIST_INTERFACE *pcli;
int hLangpack;
@@ -7,13 +8,13 @@ HINSTANCE g_hInstance; PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "WhatsApp Protocol",
- __VERSION_DWORD,
- "Provides basic support for WhatsApp.",
- "Uli Hecht",
- "uli.hecht@gmail.com",
- "© 2013-14 Uli Hecht",
- "http://example.com",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE, //not transient
// {4f1ff7fa-4d75-44b9-93b0-2ced2e4f9e3e}
{ 0x4f1ff7fa, 0x4d75, 0x44b9, { 0x93, 0xb0, 0x2c, 0xed, 0x2e, 0x4f, 0x9e, 0x3e } }
|