-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathascii.rc
32 lines (30 loc) · 892 Bytes
/
ascii.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
#include <windows.h>
IDI_ICON1 ICON "ascii.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,4,1,7
PRODUCTVERSION 0,4,1,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "AceContra\0"
VALUE "FileDescription", "AsciiTable shows octal, hexadecimal, and decimal representations of ascii characters\0"
VALUE "FileVersion", "0.5.0.0\0"
VALUE "InternalName", "acecontra.ascii-table\0"
VALUE "LegalCopyright", "AceContra\0"
VALUE "OriginalFilename", "ascii_x64.exe\0"
VALUE "ProductName", "asciiTable\0"
VALUE "ProductVersion", "0.5.0.0\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END