aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/include/protobuf/version.rc
blob: 630534062568bc30ee73a6ef9c71fe325a7ef0b8 (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
37
38
39
40
41
42
43
44
45
#define VS_FF_DEBUG 0x1L
#define VS_VERSION_INFO 0x1L
#define VS_FFI_FILEFLAGSMASK 0x17L
#define VER_PRIVATEBUILD 0x0L
#define VER_PRERELEASE 0x0L
#define VOS__WINDOWS32 0x4L
#define VFT_DLL 0x2L
#define VFT2_UNKNOWN 0x0L

#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif


VS_VERSION_INFO VERSIONINFO
  FILEVERSION    3,19,4,0
  PRODUCTVERSION 3,19,4,0
  FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
  FILEFLAGS      VER_DEBUG
  FILEOS         VOS__WINDOWS32
  FILETYPE       VFT_DLL
BEGIN
    BLOCK "VarFileInfo"
    BEGIN
        // English language (0x409) and the Windows Unicode codepage (1200)
        VALUE "Translation", 0x409, 1200
    END
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "FileDescription", "Compiled with MSVC 19.30.30704.0\0"
            VALUE "ProductVersion", "3.19.4.0\0"
            VALUE "FileVersion", "3.19.4.0\0"
            VALUE "InternalName", "protobuf\0"
            VALUE "ProductName", "Protocol Buffers - Google's Data Interchange Format\0"
            VALUE "CompanyName", "Google Inc.\0"
            VALUE "LegalCopyright", "Copyright 2008 Google Inc.  All rights reserved.\0"
            VALUE "Licence", "BSD\0"
            VALUE "Info", "https://developers.google.com/protocol-buffers/\0"
        END
    END
END