1 | /* $Id: VBoxNetFlt.rc 53838 2015-01-15 21:41:19Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxNetFlt - Resource file containing version info and icon.
|
---|
4 | */
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2014 Oracle Corporation
|
---|
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 |
|
---|
17 | #include <windows.h>
|
---|
18 | #include <VBox/version.h>
|
---|
19 |
|
---|
20 | #define DESCRIPTION_STR "VirtualBox NDIS 6.0 Lightweight Filter Driver\0"
|
---|
21 | #define FILENAME_STR "VBoxNetLwf"
|
---|
22 |
|
---|
23 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
---|
24 |
|
---|
25 | VS_VERSION_INFO VERSIONINFO
|
---|
26 | FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
27 | PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
28 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
29 | FILEFLAGS 0x0L
|
---|
30 | FILEOS VOS_NT_WINDOWS32
|
---|
31 | FILETYPE VFT_DRV
|
---|
32 | FILESUBTYPE VFT2_DRV_NETWORK
|
---|
33 | BEGIN
|
---|
34 | BLOCK "StringFileInfo"
|
---|
35 | BEGIN
|
---|
36 | BLOCK "040904b0"
|
---|
37 | BEGIN
|
---|
38 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
39 | VALUE "FileDescription", DESCRIPTION_STR
|
---|
40 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
41 | VALUE "InternalName", FILENAME_STR "\0"
|
---|
42 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
43 | VALUE "OriginalFilename", FILENAME_STR ".sys\0"
|
---|
44 | VALUE "ProductName", VBOX_PRODUCT "\0"
|
---|
45 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
|
---|
46 | END
|
---|
47 | END
|
---|
48 | BLOCK "VarFileInfo"
|
---|
49 | BEGIN
|
---|
50 | VALUE "Translation", 0x409, 1200
|
---|
51 | END
|
---|
52 | END
|
---|