-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.rc
More file actions
45 lines (42 loc) · 1.25 KB
/
app.rc
File metadata and controls
45 lines (42 loc) · 1.25 KB
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, 5, 0, 000
PRODUCTVERSION 1, 5, 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 sqlite 3.49.1 or up lib"
VALUE "CompanyName", "thrive4"
VALUE "FileDescription", "sqlite command line util"
VALUE "FileVersion", "1, 5, 0, 000"
VALUE "InternalName", ""
VALUE "LegalCopyright", ""
VALUE "OriginalFilename", "cmdsqlite"
VALUE "PrivateBuild", ""
VALUE "ProductName", "cmdsqlite"
VALUE "ProductVersion", "1, 5, 0, 0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END