1 | /* $Id: VBoxCROGL.rc 17543 2009-03-08 12:00:34Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VBoxDisp -- Windows Guest crOpenGL ICD
|
---|
6 | *
|
---|
7 | */
|
---|
8 |
|
---|
9 | /*
|
---|
10 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
11 | *
|
---|
12 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
13 | * available from http://www.virtualbox.org. This file is free software;
|
---|
14 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
15 | * General Public License (GPL) as published by the Free Software
|
---|
16 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
17 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
18 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
19 | *
|
---|
20 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
21 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
22 | * additional information or have any questions.
|
---|
23 | */
|
---|
24 |
|
---|
25 | #include <windows.h>
|
---|
26 | #include <VBox/version.h>
|
---|
27 |
|
---|
28 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
---|
29 |
|
---|
30 | VS_VERSION_INFO VERSIONINFO
|
---|
31 | FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
32 | PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
33 | FILEFLAGSMASK 0x3fL
|
---|
34 | FILEFLAGS 0x0L
|
---|
35 | FILEOS 0x40004L
|
---|
36 | FILETYPE 0x3L
|
---|
37 | FILESUBTYPE 0x4L
|
---|
38 | BEGIN
|
---|
39 | BLOCK "StringFileInfo"
|
---|
40 | BEGIN
|
---|
41 | BLOCK "040904b0"
|
---|
42 | BEGIN
|
---|
43 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
44 | VALUE "FileDescription", "VirtualBox crOpenGL ICD\0"
|
---|
45 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
46 | VALUE "InternalName", "VBoxCROGL\0"
|
---|
47 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
48 | VALUE "OriginalFilename", "VBoxCROGL.dll\0"
|
---|
49 | VALUE "ProductName", "VirtualBox Guest Additions\0"
|
---|
50 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
51 | END
|
---|
52 | END
|
---|
53 | BLOCK "VarFileInfo"
|
---|
54 | BEGIN
|
---|
55 | VALUE "Translation", 0x409, 1200
|
---|
56 | END
|
---|
57 | END
|
---|
58 |
|
---|
59 | 1 RCDATA
|
---|
60 | BEGIN
|
---|
61 | // Machine dependent parameters
|
---|
62 | 17, // Height of vertical thumb
|
---|
63 | 17, // Width of horizontal thumb
|
---|
64 | 2, // Icon horiz compression factor
|
---|
65 | 2, // Icon vert compression factor
|
---|
66 | 1, // Cursor horz compression factor
|
---|
67 | 1, // Cursor vert compression factor
|
---|
68 | 0, // Kanji window height
|
---|
69 | 1, // cxBorder (thickness of vertical lines)
|
---|
70 | 1 // cyBorder (thickness of horizontal lines)
|
---|
71 | END
|
---|