1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync/* $Id$ */
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync/** @file
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync * VBoxDrvInst - Resource file containing version info and icon.
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync */
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync
78a072e1b56619e3230735ae073668311232ec94vboxsync/*
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync * Copyright (C) 2006-2010 Oracle Corporation
78a072e1b56619e3230735ae073668311232ec94vboxsync *
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * available from http://www.virtualbox.org. This file is free software;
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * you can redistribute it and/or modify it under the terms of the GNU
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * General Public License (GPL) as published by the Free Software
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
2f139cbf73f9adba01382892f33558ad7bcb40cbvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
78a072e1b56619e3230735ae073668311232ec94vboxsync */
78a072e1b56619e3230735ae073668311232ec94vboxsync
78a072e1b56619e3230735ae073668311232ec94vboxsync#include <windows.h>
78a072e1b56619e3230735ae073668311232ec94vboxsync#include <VBox/version.h>
78a072e1b56619e3230735ae073668311232ec94vboxsync
78a072e1b56619e3230735ae073668311232ec94vboxsyncLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
78a072e1b56619e3230735ae073668311232ec94vboxsync
78a072e1b56619e3230735ae073668311232ec94vboxsyncVS_VERSION_INFO VERSIONINFO
78a072e1b56619e3230735ae073668311232ec94vboxsync FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
78a072e1b56619e3230735ae073668311232ec94vboxsync PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
78a072e1b56619e3230735ae073668311232ec94vboxsync FILEFLAGSMASK 0x3fL
78a072e1b56619e3230735ae073668311232ec94vboxsync FILEFLAGS 0x0L
78a072e1b56619e3230735ae073668311232ec94vboxsync FILEOS 0x40004L
78a072e1b56619e3230735ae073668311232ec94vboxsync FILETYPE 0x2L
78a072e1b56619e3230735ae073668311232ec94vboxsync FILESUBTYPE 0x0L
78a072e1b56619e3230735ae073668311232ec94vboxsyncBEGIN
78a072e1b56619e3230735ae073668311232ec94vboxsync BLOCK "StringFileInfo"
78a072e1b56619e3230735ae073668311232ec94vboxsync BEGIN
78a072e1b56619e3230735ae073668311232ec94vboxsync BLOCK "040904b0"
78a072e1b56619e3230735ae073668311232ec94vboxsync BEGIN
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "CompanyName", VBOX_RC_COMPANY_NAME
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "FileDescription", "VirtualBox Driver Installer\0"
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "InternalName", "VBoxDrvInst\0"
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "OriginalFilename", "VBoxDrvInst.exe\0"
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync VALUE "ProductName", VBOX_PRODUCT " Guest Additions\0"
5c65eaa08f2ec993a19c9bef6e5463918e40e0ebvboxsync VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
78a072e1b56619e3230735ae073668311232ec94vboxsync END
78a072e1b56619e3230735ae073668311232ec94vboxsync END
78a072e1b56619e3230735ae073668311232ec94vboxsync BLOCK "VarFileInfo"
78a072e1b56619e3230735ae073668311232ec94vboxsync BEGIN
78a072e1b56619e3230735ae073668311232ec94vboxsync VALUE "Translation", 0x409, 1200
78a072e1b56619e3230735ae073668311232ec94vboxsync END
78a072e1b56619e3230735ae073668311232ec94vboxsyncEND