Welcome to mirror list, hosted at ThFree Co, Russian Federation.

winres.rc « src - github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97aa6666a930678cfa76a34b1d2c47c210c9c8ca (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
31
32
33
34
35
36

#include "winresrc.h"

// icon resource
DOSBOX_ICO ICON "..\\contrib\\icons\\dosbox-staging.ico"

// version resource
VS_VERSION_INFO VERSIONINFO
 FILEVERSION 0,79,0,0
 PRODUCTVERSION 0,79,0,0
 FILEFLAGSMASK 0x3fL
 FILEFLAGS 0x0L
 FILEOS 0x40004L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "Comments", "© 2022 The DOSBox Staging Team, published under GNU GPL"
            VALUE "CompanyName", "DOSBox Staging"
            VALUE "FileDescription", "DOSBox Staging DOS Emulator"
            VALUE "FileVersion", "0, 79, 0, 0"
            VALUE "InternalName", "dosbox-staging"
            VALUE "LegalCopyright", "Copyright © 2022 The DOSBox Staging Team"
            VALUE "OriginalFilename", "dosbox.exe"
            VALUE "ProductName", "DOSBox Staging"
            VALUE "ProductVersion", "0, 79, 0, 0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END