-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.rcv
53 lines (50 loc) · 1.29 KB
/
App.rcv
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
42
43
44
45
46
47
48
49
50
51
52
53
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: APP.RCV
** COMPONENT: The Application.
** DESCRIPTION: The application version information resource.
**
*******************************************************************************
*/
#include <winver.h>
/******************************************************************************
**
** Version information.
**
*******************************************************************************
*/
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
#else
FILEFLAGS 0
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE 0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904E4"
BEGIN
VALUE "FileDescription", "UT Server Browser\0"
VALUE "FileVersion", "1.0 Alpha\0"
VALUE "InternalName", "UTSvrBrowser.exe\0"
VALUE "LegalCopyright", "(C) Chris Oldwood 2003\0"
VALUE "OriginalFilename", "UTSvrBrowser.exe\0"
VALUE "ProductName", "UT Server Browser\0"
VALUE "ProductVersion", "1.0 Alpha\0"
#ifdef _DEBUG
VALUE "Comments", "Debug Build\0"
#endif
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0809, 0x04E4
END
END