diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:11:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:11:53 +0000 |
commit | 30d2e707d653c7f31461587198dd57ff2e69af08 (patch) | |
tree | fec509e27701c7f1798599f6230b3957387a3209 /plugins/TopToolBar/main.cpp | |
parent | aea65132ee68b589074ffddc0aaef2c7b01dba51 (diff) |
- unneeded structure removed
- version resource added
git-svn-id: http://svn.miranda-ng.org/main/trunk@394 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/main.cpp')
-rw-r--r-- | plugins/TopToolBar/main.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/TopToolBar/main.cpp b/plugins/TopToolBar/main.cpp index a00460132c..c29cba78cf 100644 --- a/plugins/TopToolBar/main.cpp +++ b/plugins/TopToolBar/main.cpp @@ -1,5 +1,6 @@ #include "common.h"
+#include "version.h"
#pragma hdrstop
HINSTANCE hInst;
@@ -33,12 +34,12 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) PLUGININFOEX pluginInfo =
{
sizeof(PLUGININFOEX),
- "TopToolbar",
- PLUGIN_MAKE_VERSION(0, 7, 3, 1),
- "ToptoolBar adds buttons in top frame for fast access.This plugin uses MultiWindow or CList_MW plugin.("__DATE__" "__TIME__")",
- "Bethoven",
- "Bethoven@mailgate.ru",
- "© 2003-2008 Bethoven",
+ __PLUGIN_NAME,
+ __VERSION_DWORD,
+ __PLUGIN_DESC,
+ __PLUGIN_AUTHOR,
+ __PLUGIN_EMAIL,
+ __PLUGIN_RIGHTS,
"http://www.miranda-im.org/",
UNICODE_AWARE,
0, //doesn't replace anything built-in
|