1 | /*
|
---|
2 | * Copyright (C) 2006-2009 Sun Microsystems, Inc.
|
---|
3 | *
|
---|
4 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
5 | * available from http://www.virtualbox.org. This file is free software;
|
---|
6 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
7 | * General Public License (GPL) as published by the Free Software
|
---|
8 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
9 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
10 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
11 | *
|
---|
12 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
13 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
14 | * additional information or have any questions.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #include <windows.h>
|
---|
18 | #include <VBox/version.h>
|
---|
19 |
|
---|
20 | VS_VERSION_INFO VERSIONINFO
|
---|
21 | FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
22 | PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
23 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
24 | #ifdef _DEBUG
|
---|
25 | FILEFLAGS VS_FF_DEBUG|VS_FF_PRIVATEBUILD|VS_FF_PRERELEASE
|
---|
26 | #else
|
---|
27 | FILEFLAGS 0 // final version
|
---|
28 | #endif
|
---|
29 | FILEOS VOS__WINDOWS32
|
---|
30 | FILETYPE VFT_APP
|
---|
31 | FILESUBTYPE 0 // not used
|
---|
32 | BEGIN
|
---|
33 | BLOCK "StringFileInfo"
|
---|
34 | BEGIN
|
---|
35 | BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
|
---|
36 | BEGIN
|
---|
37 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
38 | VALUE "FileDescription", "VirtualBox GUI\0"
|
---|
39 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
|
---|
40 | VALUE "InternalName", "VirtualBox.exe\0"
|
---|
41 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
42 | VALUE "OriginalFilename","VirtualBox.exe\0"
|
---|
43 | VALUE "ProductName", "Sun VirtualBox\0"
|
---|
44 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
|
---|
45 | END
|
---|
46 | END
|
---|
47 | BLOCK "VarFileInfo"
|
---|
48 | BEGIN
|
---|
49 | VALUE "Translation", 0x409, 1252
|
---|
50 | END
|
---|
51 | END
|
---|
52 |
|
---|
53 | /* Creates the application icon. */
|
---|
54 | #include "VirtualBox-icon.rc"
|
---|