summaryrefslogtreecommitdiff
path: root/plugins/QuickMessages/src/main.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-03-05 21:08:53 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-03-05 21:08:53 +0000
commit82bb569278e601b855c5df581e59f60cd0dcabee (patch)
tree140c99cb621229f0d78a2e56f5f08901f25d727d /plugins/QuickMessages/src/main.cpp
parentfb4c6ea798339e299609b4caffe5616ca9c3caf0 (diff)
added precompiled header
added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3902 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/QuickMessages/src/main.cpp')
-rw-r--r--plugins/QuickMessages/src/main.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/QuickMessages/src/main.cpp b/plugins/QuickMessages/src/main.cpp
index 7fba5f8e4e..45777de3f7 100644
--- a/plugins/QuickMessages/src/main.cpp
+++ b/plugins/QuickMessages/src/main.cpp
@@ -33,16 +33,16 @@ BOOL g_bQuickMenu=0;
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- MODULENAME,
- PLUGIN_MAKE_VERSION(0,0,4,2),
- "Plugin for quick insert pre-defined messages in message input area.",
- "MaD_CLuSTeR",
- "daniok@yandex.ru",
- "© 2008 Danil Mozhar",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- // {37ED754B-6CF9-40ed-9EB6-0FEF8E822475}
- { 0x37ed754b, 0x6cf9, 0x40ed, { 0x9e, 0xb6, 0xf, 0xef, 0x8e, 0x82, 0x24, 0x75 } }
+ // {37ED754B-6CF9-40ED-9EB6-0FEF8E822475}
+ {0x37ed754b, 0x6cf9, 0x40ed, {0x9e, 0xb6, 0xf, 0xef, 0x8e, 0x82, 0x24, 0x75}}
};
int PreShutdown(WPARAM wparam,LPARAM lparam)