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