1 | /* $Id: VBoxOGLerrorspu.rc 53784 2015-01-13 12:44:09Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxOGLerrorspu.rc - Resource file containing version info and icon.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2015 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include <windows.h>
|
---|
19 | #include <VBox/version.h>
|
---|
20 |
|
---|
21 | #ifdef IN_GUEST
|
---|
22 | #define DESCRIPTION_STR "VirtualBox crOpenGL ICD\0"
|
---|
23 | #ifdef VBOX_WDDM_WOW64
|
---|
24 | #define FILENAME_STR "VBoxOGLerrorspu-x86"
|
---|
25 | #else
|
---|
26 | #define FILENAME_STR "VBoxOGLerrorspu"
|
---|
27 | #endif
|
---|
28 | #define PRODUCT_STR VBOX_PRODUCT " Guest Additions\0"
|
---|
29 | #else
|
---|
30 | #define DESCRIPTION_STR "VirtualBox crOpenGL ICD\0"
|
---|
31 | #define FILENAME_STR "VBoxOGLerrorspu"
|
---|
32 | #define PRODUCT_STR VBOX_PRODUCT "\0"
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
---|
36 |
|
---|
37 | VS_VERSION_INFO VERSIONINFO
|
---|
38 | FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
39 | PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
40 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
41 | FILEFLAGS 0x0L
|
---|
42 | FILEOS VOS_NT_WINDOWS32
|
---|
43 | FILETYPE VFT_DLL
|
---|
44 | FILESUBTYPE VFT2_UNKNOWN
|
---|
45 | BEGIN
|
---|
46 | BLOCK "StringFileInfo"
|
---|
47 | BEGIN
|
---|
48 | BLOCK "040904b0" // Lang=US English, CharSet=Unicode
|
---|
49 | BEGIN
|
---|
50 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
51 | VALUE "FileDescription", DESCRIPTION_STR
|
---|
52 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
53 | VALUE "InternalName", FILENAME_STR "\0"
|
---|
54 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
55 | VALUE "OriginalFilename", FILENAME_STR ".dll\0"
|
---|
56 | VALUE "ProductName", PRODUCT_STR
|
---|
57 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
|
---|
58 | END
|
---|
59 | END
|
---|
60 | BLOCK "VarFileInfo"
|
---|
61 | BEGIN
|
---|
62 | VALUE "Translation", 0x409, 1200
|
---|
63 | END
|
---|
64 | END
|
---|
65 |
|
---|
66 | // XXX is this really required?
|
---|
67 | #if defined(VBOX_WDDM_WOW64) && defined(IN_GUEST)
|
---|
68 | 1 RCDATA
|
---|
69 | BEGIN
|
---|
70 | // Machine dependent parameters
|
---|
71 | 17, // Height of vertical thumb
|
---|
72 | 17, // Width of horizontal thumb
|
---|
73 | 2, // Icon horiz compression factor
|
---|
74 | 2, // Icon vert compression factor
|
---|
75 | 1, // Cursor horz compression factor
|
---|
76 | 1, // Cursor vert compression factor
|
---|
77 | 0, // Kanji window height
|
---|
78 | 1, // cxBorder (thickness of vertical lines)
|
---|
79 | 1 // cyBorder (thickness of horizontal lines)
|
---|
80 | END
|
---|
81 | #endif
|
---|