ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync/* $Id$ */
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync/** @file
ecd27a5c936b5767a6c08e21e204f2d4340ec926vboxsync * VBoxOGLarrayspu - Resource file containing version info and icon.
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync */
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync/*
1a4f596ce75683d6e0b330ac39510b2e177f3b43vboxsync * Copyright (C) 2009-2010 Oracle Corporation
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync *
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * available from http://www.virtualbox.org. This file is free software;
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * you can redistribute it and/or modify it under the terms of the GNU
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * General Public License (GPL) as published by the Free Software
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync */
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync#include <windows.h>
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync#include <VBox/version.h>
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncVS_VERSION_INFO VERSIONINFO
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILEVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync PRODUCTVERSION VBOX_VERSION_MAJOR_NR,VBOX_VERSION_MINOR_NR,VBOX_VERSION_BUILD_NR,0
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILEFLAGSMASK 0x3fL
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILEFLAGS 0x0L
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILEOS 0x40004L
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILETYPE 0x3L
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync FILESUBTYPE 0x4L
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncBEGIN
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BLOCK "StringFileInfo"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BEGIN
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BLOCK "040904b0"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BEGIN
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "CompanyName", VBOX_RC_COMPANY_NAME
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "FileDescription", "VirtualBox crOpenGL ICD\0"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "FileVersion", VBOX_VERSION_MAJOR "." VBOX_VERSION_MINOR "." VBOX_VERSION_BUILD "." VBOX_SVN_REV "\0"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "InternalName", "VBoxOGLarrayspu\0"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "LegalCopyright", VBOX_RC_LEGAL_COPYRIGHT
67927207a2d6bb545eb655ef14cdb090b1957120vboxsync#ifdef VBOX_WDDM_WOW64
67927207a2d6bb545eb655ef14cdb090b1957120vboxsync VALUE "OriginalFilename", "VBoxOGLarrayspu-x86.dll\0"
67927207a2d6bb545eb655ef14cdb090b1957120vboxsync#else
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "OriginalFilename", "VBoxOGLarrayspu.dll\0"
67927207a2d6bb545eb655ef14cdb090b1957120vboxsync#endif
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"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync END
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync END
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BLOCK "VarFileInfo"
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync BEGIN
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync VALUE "Translation", 0x409, 1200
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync END
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncEND
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync1 RCDATA
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncBEGIN
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync// Machine dependent parameters
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 17, // Height of vertical thumb
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 17, // Width of horizontal thumb
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 2, // Icon horiz compression factor
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 2, // Icon vert compression factor
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 1, // Cursor horz compression factor
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 1, // Cursor vert compression factor
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 0, // Kanji window height
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 1, // cxBorder (thickness of vertical lines)
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsync 1 // cyBorder (thickness of horizontal lines)
ffa06e5b007c5b2f57341d90088189ce5f99c091vboxsyncEND