-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresources.rc
More file actions
36 lines (29 loc) · 972 Bytes
/
resources.rc
File metadata and controls
36 lines (29 loc) · 972 Bytes
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
#include "resources.h"
IDR_ICON ICON "icon.ico"
IDR_PEN CURSOR "pen.cur"
IDR_ERASER CURSOR "eraser.cur"
#define VER_MAJOR 2
#define VER_MINOR 4
#define VER_REVISION 0
#define INNER_TO_STR(x) #x
#define TO_STR(x) INNER_TO_STR(x)
#define VER_STRING TO_STR(VER_MAJOR) "." TO_STR(VER_MINOR) "." TO_STR(VER_REVISION) ".0"
#define VS_VERSION_INFO 0x1L
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_MAJOR,VER_MINOR,VER_REVISION
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileDescription", "Symphony Screen Snippet Tool"
VALUE "ProductName", "Symphony Screen Snippet Tool"
VALUE "ProductVersion", VER_STRING
VALUE "LegalCopyright", "Copyright 2020 Symphony OSS"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END