1 | /** @file
|
---|
2 | *
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * If you received this file as part of a commercial VirtualBox
|
---|
17 | * distribution, then only the terms of your commercial VirtualBox
|
---|
18 | * license agreement apply instead of the previous paragraph.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #include <windows.h>
|
---|
22 | #include <winver.h>
|
---|
23 |
|
---|
24 | #include "resource.h"
|
---|
25 |
|
---|
26 | VS_VERSION_INFO VERSIONINFO
|
---|
27 | FILEVERSION 1,0,0,1
|
---|
28 | PRODUCTVERSION 1,0,0,1
|
---|
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", "InnoTek Systemberatung GmbH\0"
|
---|
44 | VALUE "FileDescription", "InnoTek VirtualBox Interface\0"
|
---|
45 | VALUE "FileVersion", "1.0.000\0"
|
---|
46 | VALUE "InternalName", "VBOXC\0"
|
---|
47 | VALUE "LegalCopyright", "\0"
|
---|
48 | VALUE "LegalTrademarks", "\0"
|
---|
49 | VALUE "OriginalFilename","VBOXC.DLL\0"
|
---|
50 | VALUE "ProductName", "InnoTek VirtualBox\0"
|
---|
51 | VALUE "ProductVersion", "1.0.000\0"
|
---|
52 |
|
---|
53 | VALUE "OLESelfRegister", ""
|
---|
54 |
|
---|
55 | END
|
---|
56 | END
|
---|
57 | BLOCK "VarFileInfo"
|
---|
58 | BEGIN
|
---|
59 | VALUE "Translation", 0x409, 1252
|
---|
60 | END
|
---|
61 | END
|
---|
62 |
|
---|
63 | /////////////////////////////////////////////////////////////////////////////
|
---|
64 | //
|
---|
65 | // REGISTRY
|
---|
66 | //
|
---|
67 |
|
---|
68 | IDR_VIRTUALBOX REGISTRY "VBoxC.rgs"
|
---|
69 |
|
---|
70 | 1 TYPELIB "VirtualBox.tlb"
|
---|