-
Notifications
You must be signed in to change notification settings - Fork 1
/
eyes.rc
41 lines (34 loc) · 1.1 KB
/
eyes.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
#include <winver.h>
ICONA ICON .\eyes.ico
1 24 manifest.xml
//-- version info (shown in file properties)
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0, 0, 1, 0
PRODUCTVERSION 0, 0, 1, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
// FILETYPE VFT_DLL
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252 // Englisch (USA), Windows/Multilingual
// VALUE "Translation", 0x407, 1252 // German, Windows/Multilingual
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4" // Englisch (USA), Windows/Multilingual
// BLOCK "040704E4" // German, Windows/Multilingual
BEGIN
VALUE "FileVersion", "0.1\0"
VALUE "FileDescription", "Something like Xeyes\0"
VALUE "LegalCopyright", "Free\0"
VALUE "ProductVersion", "0.1\0"
VALUE "ProductName", "euEyes\0"
VALUE "OriginalFilename", "eueyes.exe\0"
VALUE "InternalName", "eyes\0"
VALUE "CompanyName", "Andreas Wagner\0"
VALUE "Comments", "Xeyes lookalike\0"
END
END
END
2.2