forked from pgspider/pgspider_ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
win32ver.rc
35 lines (31 loc) · 970 Bytes
/
win32ver.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
35
#include <winver.h>
#include "pg_config.h"
// https://docs.microsoft.com/en-us/windows/win32/menurc/versioninfo-resource
VS_VERSION_INFO VERSIONINFO
FILEVERSION PG_MAJORVERSION_NUM,0,PG_MINORVERSION_NUM,21116
PRODUCTVERSION PG_MAJORVERSION_NUM,0,PG_MINORVERSION_NUM,21116
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0x0L
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "CompanyName", "TOSHIBA Corporation"
VALUE "FileDescription", "pgspider_ext"
VALUE "FileVersion", 1.0
VALUE "InternalName", "pgspider_ext"
VALUE "LegalCopyright", "Copyright (c) 2020 - 2021, TOSHIBA Corporation"
VALUE "OriginalFileName", "pgspider_ext.dll"
VALUE "ProductName", "PGSpider extension"
VALUE "ProductVersion", 1.0
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0, 1200
END
END