blob: c4d78dbd3c8a90bb046afdf75a4cce5fbf10e478 (
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
|
#ifndef OTR_PRIVATE_H
#define OTR_PRIVATE_H
/* VERSION DEFINITIONS */
#define VER_MAJOR 0
#define VER_MINOR 11
#define VER_RELEASE 0
#define VER_BUILD 0
#define __STRINGIZE(x) #x
#define VER_STRING "0.11.0.0"
#ifdef _UNICODE
#define SHORT_NAME_STRING "Miranda OTR"
#define DESC_STRING "OTR (Off-the-Record) plugin for Miranda IM"
#else
#define SHORT_NAME_STRING "Miranda OTR (x64)"
#define DESC_STRING "OTR (Off-the-Record) plugin for Miranda IM (64Bit)"
#endif
#define LONGDESC_STRING DESC_STRING" ("__DATE__")\r\n(using some code and ideas from SecureIM, Pidgin-OTR and old Miranda OTR (by SJE))"
#define COMPANY_NAME ""
#define FILE_VERSION VER_STRING
#define FILE_DESCRIPTION DESC_STRING
#define INTERNAL_NAME ""
#define LEGAL_COPYRIGHT "© ProgAndy"
#define LEGAL_COPYRIGHT_LONG "© ProgAndy"
#define LEGAL_TRADEMARKS ""
#define ORIGINAL_FILENAME "mirotr.dll"
#define PRODUCT_NAME DESC_STRING
#define PRODUCT_VERSION VER_STRING
#define AUTHOR "ProgAndy & CHEF-KOCH"
#define AUTHOR_MAIL ""
#define HOMEPAGE "http://progandy.co.cc"
#endif /*OTR_PRIVATE_H*/
|