1 | /*
|
---|
2 | * VBoxService - Guest Additions Service
|
---|
3 | *
|
---|
4 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
5 | *
|
---|
6 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | * available from http://www.virtualbox.org. This file is free software;
|
---|
8 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | * General Public License (GPL) as published by the Free Software
|
---|
10 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | */
|
---|
14 |
|
---|
15 | #include <windows.h>
|
---|
16 | #include "resource.h"
|
---|
17 |
|
---|
18 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
---|
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 0x3fL
|
---|
24 | FILEFLAGS 0x0L
|
---|
25 | FILEOS 0x40004L
|
---|
26 | FILETYPE 0x2L
|
---|
27 | FILESUBTYPE 0x0L
|
---|
28 | BEGIN
|
---|
29 | BLOCK "StringFileInfo"
|
---|
30 | BEGIN
|
---|
31 | BLOCK "040904b0"
|
---|
32 | BEGIN
|
---|
33 | VALUE "CompanyName", "innotek GmbH"
|
---|
34 | VALUE "FileDescription", "VirtualBox Additions Service\0"
|
---|
35 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
36 | VALUE "InternalName", "vboxservice\0"
|
---|
37 | VALUE "LegalCopyright", "(C) 2004-2007 innotek GmbH\0"
|
---|
38 | VALUE "OriginalFilename", "VBoxService.exe\0"
|
---|
39 | VALUE "ProductName", "VirtualBox Additions Service\0"
|
---|
40 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
41 | END
|
---|
42 | END
|
---|
43 | BLOCK "VarFileInfo"
|
---|
44 | BEGIN
|
---|
45 | VALUE "Translation", 0x409, 1200
|
---|
46 | END
|
---|
47 | END
|
---|
48 |
|
---|
49 | IDI_VIRTUALBOX ICON DISCARDABLE "vbox.ico"
|
---|
50 |
|
---|