blob: 83b6f03406382ef32c5094b54f23a70b4a3931dc (
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
|
// 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 0
#define __MINOR_VERSION 0
#define __RELEASE_NUM 2
#define __BUILD_NUM 4
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
#define __STRINGIFY(x) #x
#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS)
#ifdef _UNICODE
#define __PLUGIN_NAME "nohtml (Unicode)"
#else
#define __PLUGIN_NAME "nohtml"
#endif
#define __FILENAME "nohtml.dll"
#define __DESC "Removes HTML tags from messages, optionally replacing them with bbcodes"
#define __AUTHOR "Scott Ellis"
#define __AUTHOREMAIL "mail@scottellis.com.au"
#define __AUTHORWEB "http://www.scottellis.com.au"
#define __COPYRIGHT "© 2007 Scott Ellis"
|