-
Notifications
You must be signed in to change notification settings - Fork 8
/
App.rcv
41 lines (39 loc) · 975 Bytes
/
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
////////////////////////////////////////////////////////////////////////////////
//! \file App.rcv
//! \brief The application version info resource.
//! \author Chris Oldwood
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,6,0,0
PRODUCTVERSION 1,6,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", "DDE Command\0"
VALUE "FileVersion", "1.6\0"
VALUE "InternalName", "DDECmd.exe\0"
VALUE "LegalCopyright", "(C) Chris Oldwood 2008-2017\0"
VALUE "OriginalFilename", "DDECmd.exe\0"
VALUE "ProductName", "DDE Command\0"
VALUE "ProductVersion", "1.6\0"
#ifdef _DEBUG
VALUE "Comments", "Debug Build\0"
#endif
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0809, 0x04E4
END
END