1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#define BUILD_NUM 2
#define BUILD_NUM_STR "2"
#define REVISION "$Revision: 1136 $"
#define COREVERSION_NUM 1, 0, 2,
#define COREVERSION_NUM_STR "1, 0, 2"
#define MINIMAL_COREVERSION 0, 6, 0, 0
#define MINIMAL_COREVERSION_STR "0, 6, 0, 0"
#define FILE_VERSION COREVERSION_NUM BUILD_NUM
#define FILE_VERSION_STR COREVERSION_NUM_STR " build " BUILD_NUM_STR " " REVISION
#define PRODUCT_VERSION FILE_VERSION
#define PRODUCT_VERSION_STR FILE_VERSION_STR
#define __PLUGIN_NAME "Floating Contacts"
#define __FILENAME "FltContacts.dll"
#define __DESC "Floating Contacts plugin for Miranda"
#define __AUTHOR "Iavor Vajarov, Kosh&chka, Victor Pavlychko"
#define __AUTHOREMAIL "ell-6@ya.ru"
#define __AUTHORWEB "http://miranda-ng.org/"
#define __COPYRIGHT "© 2002-2004 I. Vajarov (ivajarov@code.bg), © 2008 Kosh&chka, V. Pavlychko"
|