blob: 7de54b7cd9ff480167788e41662ff0d0f811fe51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Set the version number here - it will affect the version resource and the version field of the pluginInfo structure
// (Be careful that you don't have the resource file open when you change this and rebuild, otherwise the changes may not
// take effect within the version resource)
#define __MAJOR_VERSION 1
#define __MINOR_VERSION 1
#define __RELEASE_NUM 2
#define __BUILD_NUM 8
#define __PROD_MAJOR_VERSION 0
#define __PROD_MINOR_VERSION 8
#define __PROD_RELEASE_NUM 0
#define __PROD_BUILD_NUM 0
#define __STRINGIFY_IMPL(x) #x
#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS)
#define __PRODVERSION_STRING __PROD_MAJOR_VERSION,__PROD_MINOR_VERSION,__PROD_RELEASE_NUM,__PROD_BUILD_NUM
#define __PRODVERSION_STRING_DOTS __PROD_MAJOR_VERSION.__PROD_MINOR_VERSION.__PROD_RELEASE_NUM.__PROD_BUILD_NUM
#define __PROD_VERSION_STRING __STRINGIFY(__PRODVERSION_STRING_DOTS+)
/*
#ifdef _UNICODE
#define UNICODEAWARE_STR " (Unicode)"
#else
#define UNICODEAWARE_STR ""
#endif
#define __PLUGIN_NAME "NewStatusNotify" UNICODEAWARE_STR
*/
#define __PLUGIN_NAME "NewStatusNotify"
#define __FILENAME "NewStatusNotify.dll"
#define __DESC "Notifies you when a contact changes his/her status."
#define __AUTHOR "Luca Santarelli, Vasilich"
#define __AUTHOREMAIL "abakumoff {at} mail {dot} ru"
#define __AUTHORWEB "http://vasilich.org/blog"
#define __COPYRIGHT "© 2001-2004 Luca Santarelli, 2005-2009 Vasilich"
|