-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathVersion.rc
41 lines (41 loc) · 2.04 KB
/
Version.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
36
37
38
39
40
41
LANGUAGE 0x9,0x1
1 VERSIONINFO
FILEVERSION 1,0,1,0
PRODUCTVERSION 2,3,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
#ifdef ISX86
FILEOS 0x40004L
#else
FILEOS 0x40000L
#endif
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "100904b0"
BEGIN
VALUE "CompanyName", "Intel(R) Corporation"
VALUE "FileDescription", "Intel-PresentMon ETW Provider"
VALUE "FileVersion", "1.0.1"
VALUE "InternalName", "IntelPresentMonProvider"
VALUE "LegalCopyright", "Copyright (C) 2017-2024"
#ifdef ISX86
VALUE "OriginalFilename", "Intel-PresentMon32.dll"
#else
VALUE "OriginalFilename", "Intel-PresentMon.dll"
#endif
VALUE "ProductName", "Intel(R) PresentMon"
VALUE "ProductVersion", "2.3.0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x1009, 1200
END
END