-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit.rc
42 lines (37 loc) · 854 Bytes
/
edit.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
/*
edit.rc - Version resource for edit.dll.
Jason Hood, 23 July, 2010.
*/
#include <winver.h>
#include "version.h"
#ifdef _WIN64
#define EDITDLL "edit_amd64.dll"
#else
#define EDITDLL "edit.dll"
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION PVERB
PRODUCTVERSION PVERB
FILEOS VOS_NT
FILETYPE VFT_DLL
{
BLOCK "StringFileInfo"
{
BLOCK "040904B0"
{
VALUE "Comments", "http://cmdkey.adoxa.vze.com/"
VALUE "CompanyName", "Jason Hood"
VALUE "FileDescription", "Command Line Editor"
VALUE "FileVersion", PVERSA
VALUE "InternalName", "edit"
VALUE "LegalCopyright", "Freeware"
VALUE "OriginalFilename", EDITDLL
VALUE "ProductName", "CMDread"
VALUE "ProductVersion", PVERSA
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 0x04B0
}
}