summaryrefslogtreecommitdiffstats
path: root/mmc_updater/src/resources/updater.rc
blob: 9c7c57112db3dd7cb9cb3409054a248ce510d8f3 (plain)
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
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>

IDI_APPICON		ICON		DISCARDABLE	"updater.ico"

1 RT_MANIFEST "updater.manifest"

VS_VERSION_INFO VERSIONINFO
FILEVERSION     1,0,0,0
FILEOS          VOS_NT_WINDOWS32
FILETYPE        VFT_APP
BEGIN
        BLOCK "StringFileInfo"
        BEGIN
                BLOCK "000004b0"
                BEGIN
                        VALUE "CompanyName", "MultiMC Contributors"
                        VALUE "FileDescription", "Software Update Tool"
                        VALUE "FileVersion", "1.0.0.0"
                        VALUE "ProductName", "MultiMC Software Updater"
                        VALUE "ProductVersion", "1.0"
                END
        END
        BLOCK "VarFileInfo"
        BEGIN
                VALUE "Translation", 0x0000, 0x04b0 // Unicode
        END
END