VBoxSupLib.rc revision 85fc7dbf8f928aea2a6fddde85a77950f69284dd
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff/* $Id$ */
ca41b452ede6feaa9d8739ec3cae19389a7b0d03Bob Halley/** @file
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence * VBoxVMM - Resource file containing version info and icon.
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff */
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff/*
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence * Copyright (C) 2015 Oracle Corporation
15a44745412679c30a6d022733925af70a38b715David Lawrence *
15a44745412679c30a6d022733925af70a38b715David Lawrence * This file is part of VirtualBox Open Source Edition (OSE), as
15a44745412679c30a6d022733925af70a38b715David Lawrence * available from http://www.virtualbox.org. This file is free software;
15a44745412679c30a6d022733925af70a38b715David Lawrence * you can redistribute it and/or modify it under the terms of the GNU
15a44745412679c30a6d022733925af70a38b715David Lawrence * General Public License (GPL) as published by the Free Software
15a44745412679c30a6d022733925af70a38b715David Lawrence * Foundation, in version 2 as it comes in the "COPYING" file of the
15a44745412679c30a6d022733925af70a38b715David Lawrence * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15a44745412679c30a6d022733925af70a38b715David Lawrence * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff */
5f0e2c8913fed44e1629f1367ce54e74ce2a2eb3Michael Graff
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#include <windows.h>
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid Lawrence#include <VBox/version.h>
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark AndrewsLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark AndrewsVS_VERSION_INFO VERSIONINFO
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILEFLAGS 0x0L
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILEOS VOS_NT_WINDOWS32
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILETYPE VFT_DLL
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews FILESUBTYPE VFT2_UNKNOWN
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark AndrewsBEGIN
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BLOCK "StringFileInfo"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BEGIN
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BLOCK "040904b0" // Lang=US English, CharSet=Unicode
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BEGIN
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "CompanyName", VBOX_RC_COMPANY_NAME
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "FileDescription", "VirtualBox Kernel Support\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "InternalName", "VBoxSupLib\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "OriginalFilename", "VBoxSupLib.dll\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "ProductName", VBOX_PRODUCT "\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "ProductVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD ".r" VBOX_SVN_REV "\0"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews END
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews END
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BLOCK "VarFileInfo"
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews BEGIN
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews VALUE "Translation", 0x409, 1200
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews END
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark AndrewsEND
c4ef94b1a270ab01d0ca50ecbc1df7fcdf6fc44fMark Andrews