-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalgebrisk.rc
48 lines (40 loc) · 1.24 KB
/
algebrisk.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
#include "winuser.h"
#include "winver.h"
#define VER_FILEVERSION 1,0,0,1
#define VER_FILEVERSION_STR "1.0.0.1"
#define VER_PRODUCTVERSION 1,0,0,1
#define VER_PRODUCTVERSION_STR "1.0.0.1"
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
#define IDI_ICON 0x101
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "algebrisk.exe.manifest"
IDI_ICON ICON "algebrisk.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEOS VOS_UNKNOWN
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "JP Nickolas"
VALUE "FileDescription", "Algebrisk"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "Algebrisk"
VALUE "LegalCopyright", "Copyright (C) Nick Hilton 2022"
VALUE "OriginalFilename", "Algebrisk"
VALUE "ProductName", "Algebrisk"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END