-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage1.rc
32 lines (31 loc) · 913 Bytes
/
Package1.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
#define VOS_NT_WINDOWS32 0x00040004L
#define VFT_APP 0x00000001L
#include "version.dummy"
//this will set your .exe icon
//A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "exeicn.ico"
//include version information in .exe, modify these values to match your needs
1 VERSIONINFO
FILEVERSION RC_FILEVERSION
//FILEVERSION 1,0,0
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "CompanyName", "Matías Israelson (AKA: El_isra)"
VALUE "FileVersion", RC_FILEVERSION_STRING
VALUE "FileDescription", "color changer for windows CMD"
VALUE "InternalName", "DiagBox"
VALUE "LegalCopyright", " "
VALUE "LegalTrademarks", " "
VALUE "OriginalFilename", "DiagBox.exe"
VALUE "ProductName", "Dialog box"
VALUE "ProductVersion", RC_FILEVERSION_STRING
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 1252 //language codes
}
}