VBoxDrv.rc revision ecd27a5c936b5767a6c08e21e204f2d4340ec926
202N/A/* $Id$ */
202N/A/** @file
202N/A * VBoxDrv - Resource file containing version info and icon.
202N/A */
202N/A
202N/A/*
202N/A * Copyright (C) 2006-2015 Oracle Corporation
202N/A *
202N/A * This file is part of VirtualBox Open Source Edition (OSE), as
202N/A * available from http://www.virtualbox.org. This file is free software;
202N/A * you can redistribute it and/or modify it under the terms of the GNU
202N/A * General Public License (GPL) as published by the Free Software
202N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
202N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
202N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
202N/A *
202N/A * The contents of this file may alternatively be used under the terms
202N/A * of the Common Development and Distribution License Version 1.0
202N/A * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
202N/A * VirtualBox OSE distribution, in which case the provisions of the
202N/A * CDDL are applicable instead of those of the GPL.
202N/A *
202N/A * You may elect to license modified versions of this file under the
202N/A * terms and conditions of either the GPL or the CDDL or both.
202N/A */
202N/A
202N/A#include <windows.h>
202N/A#include <VBox/version.h>
202N/A
202N/ALANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
202N/A
202N/AVS_VERSION_INFO VERSIONINFO
271N/A FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
202N/A PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
202N/A FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
202N/A FILEFLAGS 0x0L
202N/A FILEOS VOS_NT_WINDOWS32
202N/A FILETYPE VFT_DRV
202N/A FILESUBTYPE VFT2_DRV_SYSTEM
202N/ABEGIN
202N/A BLOCK "StringFileInfo"
202N/A BEGIN
202N/A BLOCK "040904b0" // Lang=US English, CharSet=Unicode
202N/A BEGIN
202N/A VALUE "CompanyName", VBOX_RC_COMPANY_NAME
202N/A VALUE "FileDescription", "VirtualBox Support Driver\0"
202N/A VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
202N/A VALUE "InternalName", "VBoxDrv\0"
202N/A VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
202N/A VALUE "OriginalFilename", "VBoxDrv.sys\0"
271N/A VALUE "ProductName", VBOX_PRODUCT "\0"
202N/A VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
202N/A END
271N/A END
202N/A BLOCK "VarFileInfo"
202N/A BEGIN
202N/A VALUE "Translation", 0x409, 1200
END
END