5
#include "../config-win32.h"
7
/* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
8
* and VER_INTERNALNAME_STR must be defined before including COMMON.VER
9
* The strings don't need a '\0', since common.ver has them.
12
#define VER_FILETYPE VFT_DRV
13
/* possible values: VFT_UNKNOWN
21
#define VER_FILESUBTYPE VFT2_DRV_NETWORK
22
/* possible values VFT2_UNKNOWN
35
#define VER_COMPANYNAME_STR "The OpenVPN Project"
36
#define VER_FILEDESCRIPTION_STR "TAP-Win32 Virtual Network Driver"
37
#define VER_ORIGINALFILENAME_STR "tapdrvr.sys"
38
#define VER_LEGALCOPYRIGHT_YEARS "2003"
39
#define VER_LEGALCOPYRIGHT_STR "James Yonan and Damion K. Wilson"
42
#define VER_PRODUCTNAME_STR VER_FILEDESCRIPTION_STR
43
#define VER_PRODUCTVERSION TAP_DRIVER_MAJOR_VERSION,00,00,TAP_DRIVER_MINOR_VERSION
45
#define XSTR(s) STR(s)
48
#define VSTRING VERSION " " XSTR(TAP_DRIVER_MAJOR_VERSION) "/" XSTR(TAP_DRIVER_MINOR_VERSION)
51
#define VER_PRODUCTVERSION_STR VSTRING " (DEBUG)"
53
#define VER_PRODUCTVERSION_STR VSTRING
56
#define VER_INTERNALNAME_STR VER_ORIGINALFILENAME_STR