1 | /* $Id: VBoxNetFltNotify.rc 32394 2010-09-10 12:13:11Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxNetFltNotify - Resource file containing version info and icon.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2010 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 | #include "VBoxNetFltNotifyRc.h"
|
---|
22 | /////////////////////////////////////////////////////////////////////////////
|
---|
23 | //
|
---|
24 | // REGISTRY
|
---|
25 | //
|
---|
26 | 1 TYPELIB "VBoxNetFltNotifyn.tlb"
|
---|
27 | IDR_REG_VBOXNETFLT_NOTIFY REGISTRY "VBoxNetFltNotify.rgs"
|
---|
28 |
|
---|
29 | VS_VERSION_INFO VERSIONINFO
|
---|
30 | FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
31 | PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
|
---|
32 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
---|
33 | #ifdef _DEBUG
|
---|
34 | FILEFLAGS VS_FF_DEBUG|VS_FF_PRIVATEBUILD|VS_FF_PRERELEASE
|
---|
35 | #else
|
---|
36 | FILEFLAGS 0 // final version
|
---|
37 | #endif
|
---|
38 | FILEOS VOS__WINDOWS32
|
---|
39 | FILETYPE VFT_DLL
|
---|
40 | FILESUBTYPE VFT2_UNKNOWN
|
---|
41 | BEGIN
|
---|
42 | BLOCK "StringFileInfo"
|
---|
43 | BEGIN
|
---|
44 | BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
|
---|
45 | BEGIN
|
---|
46 | VALUE "CompanyName", VBOX_RC_COMPANY_NAME
|
---|
47 | VALUE "FileDescription", "VirtualBox Bridged Networking Driver Notify Object\0"
|
---|
48 | VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
|
---|
49 | VALUE "InternalName", "VBoxNetFltNotify.dll\0"
|
---|
50 | VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
|
---|
51 | VALUE "OriginalFilename","VBoxNetFltNotify.dll\0"
|
---|
52 | VALUE "ProductName", VBOX_PRODUCT "\0"
|
---|
53 | VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
|
---|
54 | END
|
---|
55 | END
|
---|
56 | BLOCK "VarFileInfo"
|
---|
57 | BEGIN
|
---|
58 | VALUE "Translation", 0x409, 1252
|
---|
59 | END
|
---|
60 | END
|
---|
61 |
|
---|