diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:38:06 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:38:06 +0000 |
commit | e1a951460fef9eecef8944a7e5fce4e51bb9387a (patch) | |
tree | 67e47ffa1f63b4f7adeb61e0e7744531166daaf6 /plugins/TopToolBar/main.cpp | |
parent | 9b873e37cc52b7ba4d1d240d04e42b5426976da8 (diff) |
- advanced version processing
- another unneeded variable removed;
git-svn-id: http://svn.miranda-ng.org/main/trunk@396 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/main.cpp')
-rw-r--r-- | plugins/TopToolBar/main.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/TopToolBar/main.cpp b/plugins/TopToolBar/main.cpp index c29cba78cf..38f1805379 100644 --- a/plugins/TopToolBar/main.cpp +++ b/plugins/TopToolBar/main.cpp @@ -8,7 +8,7 @@ PLUGINLINK *pluginLink; MM_INTERFACE mmi;
LIST_INTERFACE li;
HANDLE hHookTTBModuleLoaded;
-int hLangpack;
+int hLangpack;
LIST<void> arHooks(10), arServices(10);
@@ -31,17 +31,17 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) /////////////////////////////////////////////////////////////////////////////////////////
-PLUGININFOEX pluginInfo =
+PLUGININFOEX pluginInfo =
{
- sizeof(PLUGININFOEX),
- __PLUGIN_NAME,
- __VERSION_DWORD,
- __PLUGIN_DESC,
- __PLUGIN_AUTHOR,
- __PLUGIN_EMAIL,
- __PLUGIN_RIGHTS,
- "http://www.miranda-im.org/",
- UNICODE_AWARE,
+ sizeof(PLUGININFOEX),
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __PLUGIN_DESC,
+ __PLUGIN_AUTHOR,
+ __PLUGIN_EMAIL,
+ __PLUGIN_RIGHTS,
+ __PLUGIN_AUTHORWEB,
+ UNICODE_AWARE,
0, //doesn't replace anything built-in
MIID_TTB
};
|