forked from finos/ScreenShareIndicatorFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.rc
34 lines (27 loc) · 870 Bytes
/
resources.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
#define IDR_ICON 101
IDR_ICON ICON "icon.ico"
#define VER_MAJOR 1
#define VER_MINOR 4
#define VER_REVISION 10
#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 Share Indicator Frame"
VALUE "ProductName", "Symphony Screen Share Indicator Frame"
VALUE "ProductVersion", VER_STRING
VALUE "LegalCopyright", "Copyright 2020 Symphony OSS"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END