diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-02 17:45:56 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-02 17:45:56 +0000 |
commit | 8178d29409958bd12b5c22056b720197085f9b9d (patch) | |
tree | 460e177d1910ddfc14c21c83ae23e1848eabeebc /plugins/NewEventNotify/src/main.cpp | |
parent | 80a1ae113477c05da643b3aafdf8b84c48d8e823 (diff) |
removed not used headers
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3847 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewEventNotify/src/main.cpp')
-rw-r--r-- | plugins/NewEventNotify/src/main.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/plugins/NewEventNotify/src/main.cpp b/plugins/NewEventNotify/src/main.cpp index 6c2c286396..67f3efd4ab 100644 --- a/plugins/NewEventNotify/src/main.cpp +++ b/plugins/NewEventNotify/src/main.cpp @@ -36,15 +36,13 @@ PLUGIN_OPTIONS pluginOptions; int hLangpack;
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "NewEventNotify",
- PLUGIN_MAKE_VERSION(0, VER_MAJOR, VER_MINOR, VER_BUILD),
- "Notifies you when you receive a message, url, file or any other event by displaying a popup. Uses the PopUp-Plugin by hrk. "
- "Original plugin was written by icebreaker, modified by Prezes and some "
- "bugfixes were made by vj, vlko, Nightwish, TheLeech and others. More fixes & updates by Joe @ Whale.",
- "icebreaker, Prezes, vj, vlko, Joe @ Whale",
- "jokusoftware@miranda-im.org",
- "GNU GPL",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
// {3503D584-6234-4BEF-A553-6C1B9CD471F2}
{0x3503D584, 0x6234, 0x4BEF, {0xA5, 0x53, 0x6C, 0x1B, 0x9C, 0xD4, 0x71, 0xF2}}
|