1 | /* $Id: VBoxHeadless.rc 62495 2016-07-22 18:46:15Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox headless frontent - Windows resource file.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2015-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include <windows.h>
|
---|
19 | #include <VBox/version.h>
|
---|
20 |
|
---|
21 | VS_VERSION_INFO VERSIONINFO
|
---|
22 | FILEVERSION VBOX_RC_FILE_VERSION
|
---|
23 | PRODUCTVERSION VBOX_RC_FILE_VERSION
|
---|
24 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
25 | FILEFLAGS VBOX_RC_FILE_FLAGS
|
---|
26 | FILEOS VBOX_RC_FILE_OS
|
---|
27 | #ifdef VBOXR3_HARDENED_DLL
|
---|
28 | FILETYPE VBOX_RC_TYPE_APP
|
---|
29 | #else
|
---|
30 | FILETYPE VBOX_RC_TYPE_DLL
|
---|
31 | #endif
|
---|
32 | FILESUBTYPE VFT2_UNKNOWN
|
---|
33 | BEGIN
|
---|
34 | BLOCK "StringFileInfo"
|
---|
35 | BEGIN
|
---|
36 | BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
|
---|
37 | BEGIN
|
---|
38 | VALUE "FileDescription", "VirtualBox Headless Frontend\0"
|
---|
39 | #ifdef VBOXR3_HARDENED_DLL
|
---|
40 | VALUE "InternalName", "VBoxHeadless\0"
|
---|
41 | #else
|
---|
42 | VALUE "InternalName", "VBoxHeadless\0"
|
---|
43 | #endif
|
---|
44 | #ifdef VBOXR3_HARDENED_DLL
|
---|
45 | VALUE "OriginalFilename", "VBoxHeadless.dll\0"
|
---|
46 | #else
|
---|
47 | VALUE "OriginalFilename", "VBoxHeadless.exe\0"
|
---|
48 | #endif
|
---|
49 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
50 | VALUE "FileVersion", VBOX_RC_FILE_VERSION_STR
|
---|
51 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
52 | VALUE "ProductName", VBOX_RC_PRODUCT_NAME_STR
|
---|
53 | VALUE "ProductVersion", VBOX_RC_PRODUCT_VERSION_STR
|
---|
54 | VBOX_RC_MORE_STRINGS
|
---|
55 | END
|
---|
56 | END
|
---|
57 | BLOCK "VarFileInfo"
|
---|
58 | BEGIN
|
---|
59 | VALUE "Translation", 0x409, 1252
|
---|
60 | END
|
---|
61 | END
|
---|
62 |
|
---|
63 | /* Creates the application icon. */
|
---|
64 | #include "VBoxHeadless-icon.rc"
|
---|
65 |
|
---|