-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rc
45 lines (42 loc) · 1.24 KB
/
app.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
//=============================================================================
// Generic project resource file
//=============================================================================
// add helpfile in exe windows only
//helpfile rcdata "help.txt"
// add an icon windows only?
FB_PROGRAM_ICON ICON "app.ico"
// add version and file info in exe windows only
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 6, 0, 000
PRODUCTVERSION 1, 6, 0, 0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x9L
#else
FILEFLAGS 0x8L
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "needs sdl and sdl_image libs"
VALUE "CompanyName", "thrive4"
VALUE "FileDescription", "imageviewer"
VALUE "FileVersion", "1, 6, 0, 000"
VALUE "InternalName", ""
VALUE "LegalCopyright", ""
VALUE "OriginalFilename", "imageviewer"
VALUE "PrivateBuild", ""
VALUE "ProductName", "imageviewer"
VALUE "ProductVersion", "1, 6, 0, 0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END