summaryrefslogtreecommitdiff
path: root/plugins/FavContacts/src/main.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-02-24 13:26:34 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-02-24 13:26:34 +0000
commitb5f57615680d9cf6d8fd890df48efb71fa4bc299 (patch)
tree09610758e8a4ba282ea64c4178431d6acbf559f8 /plugins/FavContacts/src/main.cpp
parenta8ca6c3c2b81022923d1724fdb933ec12db8b3b4 (diff)
added precompiled header
added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3750 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FavContacts/src/main.cpp')
-rw-r--r--plugins/FavContacts/src/main.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/FavContacts/src/main.cpp b/plugins/FavContacts/src/main.cpp
index 0c1345d000..6271074da6 100644
--- a/plugins/FavContacts/src/main.cpp
+++ b/plugins/FavContacts/src/main.cpp
@@ -20,22 +20,21 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "headers.h"
-DWORD g_mirandaVersion;
HINSTANCE g_hInst;
int hLangpack;
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "Favourite Contacts",
- PLUGIN_MAKE_VERSION(0, 0, 0, 6),
- "Favourite contacts menu.",
- "code by Victor Pavlychko, icons by Angeli-Ka",
- "nullbie@gmail.com",
- "Copyright 2007-2009 Victor Pavlychko",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- // {CE2C0401-F9E0-40d7-8E95-1A4197D7AB04}
+ // {CE2C0401-F9E0-40D7-8E95-1A4197D7AB04}
{0xce2c0401, 0xf9e0, 0x40d7, {0x8e, 0x95, 0x1a, 0x41, 0x97, 0xd7, 0xab, 0x4}}
};