-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcdecrypt.rc
More file actions
58 lines (49 loc) · 1.55 KB
/
cdecrypt.rc
File metadata and controls
58 lines (49 loc) · 1.55 KB
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
49
50
51
52
53
54
55
56
57
58
#pragma code_page(65001)
#include <winver.h>
#include <ntdef.h>
#ifdef RC_INVOKED
#define _TO_STRING(x) #x
#define TO_STRING(x) _TO_STRING(x)
#ifndef APP_DESC
#define APP_DESC ""
#endif
#ifndef APP_MAJOR
#define APP_MAJOR 0
#endif
#ifndef APP_MINOR
#define APP_MINOR 0
#endif
#ifndef APP_NAME
#define APP_NAME ""
#endif
#ifndef EXE_NAME
#define EXE_NAME ""
#endif
VS_VERSION_INFO VERSIONINFO
FILEFLAGS 0x0L
FILEFLAGSMASK 0x3FL
FILEOS 0x40004L
FILESUBTYPE 0x0L
FILETYPE 0x1L
FILEVERSION APP_MAJOR,APP_MINOR,0,0
PRODUCTVERSION APP_MAJOR,APP_MINOR,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", APP_DESC
VALUE "FileVersion", TO_STRING(APP_MAJOR) "," TO_STRING(APP_MINOR) ",0,0"
VALUE "InternalName", APP_NAME
VALUE "LegalCopyright", "Copyright © 2020-2023 VitaSmith, Copyright © 2013-2015 crediar"
VALUE "OriginalFilename", EXE_NAME
VALUE "ProductName", APP_NAME
VALUE "ProductVersion", TO_STRING(APP_MAJOR) "," TO_STRING(APP_MINOR) ",0,0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x9, 1200
END
END
#endif