-
Notifications
You must be signed in to change notification settings - Fork 1
/
onslaught.rc
67 lines (65 loc) · 1.65 KB
/
onslaught.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
1 VERSIONINFO
#ifdef _DEBUG
#include <winver.h>
FILEFLAGS VS_FF_DEBUG
FILEVERSION 9999, 99, 99, 0
PRODUCTVERSION 9999, 99, 99, 0
#else
FILEFLAGS 32
FILEVERSION 2012, 07, 23, 0
PRODUCTVERSION 2012, 07, 23, 0
#endif
FILEOS 4
FILETYPE 1
#if defined(_DEBUG)
{
BLOCK "StringFileInfo" {
BLOCK "040904B0" {
VALUE "FileDescription", "ONSlaught"
VALUE "OriginalFilename", "ONSlaught.exe"
VALUE "CompanyName", "Helios"
VALUE "FileVersion", "Debug"
VALUE "LegalCopyright", "Copyright (c) 2008-2011, Helios"
VALUE "ProductName", "ONSlaught: An ONScripter clone with Unicode support."
VALUE "ProductVersion", "Debug"
}
}
BLOCK "VarFileInfo" {
VALUE "Translation", 0x0409, 0x04B0
}
}
#elif defined(NONS_SVN)
{
BLOCK "StringFileInfo" {
BLOCK "040904B0" {
VALUE "FileDescription", "ONSlaught"
VALUE "OriginalFilename", "ONSlaught.exe"
VALUE "CompanyName", "Helios"
VALUE "FileVersion", "2012-07-23 07:06:50"
VALUE "LegalCopyright", "Copyright (c) 2008-2011, Helios"
VALUE "ProductName", "ONSlaught: An ONScripter clone with Unicode support."
VALUE "ProductVersion", "2012-07-23 07:06:50"
}
}
BLOCK "VarFileInfo" {
VALUE "Translation", 0x0409, 0x04B0
}
}
#else
{
BLOCK "StringFileInfo" {
BLOCK "040904B0" {
VALUE "FileDescription", "ONSlaught"
VALUE "OriginalFilename", "ONSlaught.exe"
VALUE "CompanyName", "Helios"
VALUE "FileVersion", "2012-07-23 07:06:50"
VALUE "LegalCopyright", "Copyright (c) 2008-2011, Helios"
VALUE "ProductName", "ONSlaught: An ONScripter clone with Unicode support."
VALUE "ProductVersion", "2012-07-23 07:06:50"
}
}
BLOCK "VarFileInfo" {
VALUE "Translation", 0x0409, 0x04B0
}
}
#endif