diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 09:00:59 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-15 09:00:59 +0000 |
commit | 7654daaa6cf56a14c6a10fb4384a79c5ad750d8d (patch) | |
tree | b1ba4eeab7e6837ad48a65943021197336abe731 /plugins/VersionInfo/src/main.cpp | |
parent | 9b692fa3fe30c96dd81b43078a1f464f60c9a468 (diff) |
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@4043 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/VersionInfo/src/main.cpp')
-rw-r--r-- | plugins/VersionInfo/src/main.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/plugins/VersionInfo/src/main.cpp b/plugins/VersionInfo/src/main.cpp index f9143d34c7..63d9b51339 100644 --- a/plugins/VersionInfo/src/main.cpp +++ b/plugins/VersionInfo/src/main.cpp @@ -20,8 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "common.h"
-#include "CVersionInfo.h"
-
HINSTANCE hInst;
int hLangpack;
@@ -46,15 +44,15 @@ char ModuleName[] = "VersionInfo"; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
- __PLUGIN_DISPLAY_NAME,
- VERSION,
- __DESC,
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
__AUTHOR,
__AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- // {2f174488-489c-4fe1-940d-596cf0f35e65}
+ // {2F174488-489C-4FE1-940D-596CF0F35E65}
{0x2f174488, 0x489c, 0x4fe1, {0x94, 0x0d, 0x59, 0x6c, 0xf0, 0xf3, 0x5e, 0x65}}
};
|