-
Notifications
You must be signed in to change notification settings - Fork 9
/
game_version.rc
45 lines (42 loc) · 1.16 KB
/
game_version.rc
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
#include "resource.h"
#include "afxres.h"
#include "revision.h"
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS)
#ifdef _WIN32
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
#pragma code_page(1251)
#endif //_WIN32
VS_VERSION_INFO VERSIONINFO
FILEVERSION VISTA_ENGINE_RESOURCE_VERSION
PRODUCTVERSION VISTA_ENGINE_RESOURCE_VERSION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "041904b0"
BEGIN
VALUE "CompanyName", "KD VISION"
VALUE "FileDescription", "VistaGame Engine Runtime (c) 2004-2007"
VALUE "FileVersion", VISTA_ENGINE_VERSION
VALUE "InternalName", "VistaEngine"
VALUE "LegalCopyright", "VistaGame Engine (c) KD VISION. All rights reserved."
VALUE "LegalTrademarks", "VistaGame Engine"
VALUE "OriginalFilename", "Game.exe"
VALUE "ProductName", "VistaGame Engine"
VALUE "ProductVersion", VISTA_ENGINE_VERSION
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x419, 1200
END
END
#endif