1 | /** @file
|
---|
2 | *
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek 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 |
|
---|
17 | #include <windows.h>
|
---|
18 | #include <winver.h>
|
---|
19 |
|
---|
20 | #include "resource.h"
|
---|
21 |
|
---|
22 | VS_VERSION_INFO VERSIONINFO
|
---|
23 | FILEVERSION 1,0,0,1
|
---|
24 | PRODUCTVERSION 1,0,0,1
|
---|
25 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
26 | #ifdef _DEBUG
|
---|
27 | FILEFLAGS VS_FF_DEBUG|VS_FF_PRIVATEBUILD|VS_FF_PRERELEASE
|
---|
28 | #else
|
---|
29 | FILEFLAGS 0 // final version
|
---|
30 | #endif
|
---|
31 | FILEOS VOS__WINDOWS32
|
---|
32 | FILETYPE VFT_APP
|
---|
33 | FILESUBTYPE 0 // not used
|
---|
34 | BEGIN
|
---|
35 | BLOCK "StringFileInfo"
|
---|
36 | BEGIN
|
---|
37 | BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
|
---|
38 | BEGIN
|
---|
39 | VALUE "CompanyName", "innotek GmbH\0"
|
---|
40 | VALUE "FileDescription", "innotek VirtualBox Interface\0"
|
---|
41 | VALUE "FileVersion", "1.0.000\0"
|
---|
42 | VALUE "InternalName", "VBOXSVC\0"
|
---|
43 | VALUE "LegalCopyright", "\0"
|
---|
44 | VALUE "LegalTrademarks", "\0"
|
---|
45 | VALUE "OriginalFilename","VBOXSVC.EXE\0"
|
---|
46 | VALUE "ProductName", "innotek VirtualBox\0"
|
---|
47 | VALUE "ProductVersion", "1.0.000\0"
|
---|
48 |
|
---|
49 | VALUE "OLESelfRegister", ""
|
---|
50 |
|
---|
51 | END
|
---|
52 | END
|
---|
53 | BLOCK "VarFileInfo"
|
---|
54 | BEGIN
|
---|
55 | VALUE "Translation", 0x409, 1252
|
---|
56 | END
|
---|
57 | END
|
---|
58 |
|
---|
59 | /////////////////////////////////////////////////////////////////////////////
|
---|
60 | //
|
---|
61 | // REGISTRY
|
---|
62 | //
|
---|
63 |
|
---|
64 | IDR_VIRTUALBOX REGISTRY "VBoxSVC.rgs"
|
---|
65 |
|
---|
66 | 1 TYPELIB "VirtualBox.tlb"
|
---|