| 1 | ;
|
|---|
| 2 | ; VirtualBox Video miniport driver
|
|---|
| 3 | ;
|
|---|
| 4 | ; Copyright (C) 2006-2007 Oracle Corporation
|
|---|
| 5 | ;
|
|---|
| 6 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
|---|
| 7 | ; available from http://www.virtualbox.org. This file is free software;
|
|---|
| 8 | ; you can redistribute it and/or modify it under the terms of the GNU
|
|---|
| 9 | ; General Public License (GPL) as published by the Free Software
|
|---|
| 10 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
|---|
| 11 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
|---|
| 12 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
|---|
| 13 | ;
|
|---|
| 14 |
|
|---|
| 15 | [Version]
|
|---|
| 16 | Signature="$WINDOWS NT$"
|
|---|
| 17 | Provider=%ORACLE%
|
|---|
| 18 | ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
|
|---|
| 19 | Class=Display
|
|---|
| 20 | DriverVer = 02/17/2011,4.0.4
|
|---|
| 21 | CatalogFile = VBoxVideo.cat
|
|---|
| 22 |
|
|---|
| 23 | [DestinationDirs]
|
|---|
| 24 | DefaultDestDir=11
|
|---|
| 25 | VBoxVideo.Miniport = 12 ; drivers
|
|---|
| 26 | VBoxVideo.Display = 11 ; system32
|
|---|
| 27 |
|
|---|
| 28 | [Manufacturer]
|
|---|
| 29 | %ORACLE%=Model
|
|---|
| 30 |
|
|---|
| 31 | [Model]
|
|---|
| 32 | %VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 | [VBoxVideo]
|
|---|
| 36 | CopyFiles = VBoxVideo.Miniport, VBoxVideo.Display
|
|---|
| 37 |
|
|---|
| 38 | [VBoxVideo.Miniport]
|
|---|
| 39 | VBoxVideo.sys,,,0x100
|
|---|
| 40 |
|
|---|
| 41 | [VBoxVideo.Display]
|
|---|
| 42 | VBoxDisp.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
|
|---|
| 43 |
|
|---|
| 44 | [VBoxVideo.Services]
|
|---|
| 45 | AddService=VBoxVideo, 0x00000002, vboxvideo_Service_Inst, vboxvideo_EventLog_Inst
|
|---|
| 46 |
|
|---|
| 47 | [vboxvideo_Service_Inst]
|
|---|
| 48 | ServiceType=1 ; SERVICE_KERNEL_DRIVER
|
|---|
| 49 | StartType=1 ; SERVICE_SYSTEM_START
|
|---|
| 50 | ErrorControl=0 ; SERVICE_ERROR_IGNORE
|
|---|
| 51 | LoadOrderGroup=Video
|
|---|
| 52 | ServiceBinary=%12%\VBoxVideo.sys
|
|---|
| 53 |
|
|---|
| 54 | [vboxvideo_EventLog_Inst]
|
|---|
| 55 | AddReg = vboxvideo_EventLog_AddReg
|
|---|
| 56 |
|
|---|
| 57 | [vboxvideo_EventLog_AddReg]
|
|---|
| 58 | HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\VBoxVideo.sys"
|
|---|
| 59 | HKR,,TypesSupported,0x00010001,7
|
|---|
| 60 |
|
|---|
| 61 | [VBoxVideo.SoftwareSettings]
|
|---|
| 62 | AddReg = vboxvideo_SoftwareDeviceSettings
|
|---|
| 63 |
|
|---|
| 64 | [vboxvideo_SoftwareDeviceSettings]
|
|---|
| 65 | HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDisp
|
|---|
| 66 | ; Set 'Full' hardware acceleration up. On W2003 the level is by default None=5, leading to software mouse cursor
|
|---|
| 67 | HKR,, Acceleration.Level, %REG_DWORD%, 0
|
|---|
| 68 | HKR,, VgaCompatible, %REG_DWORD%, 0
|
|---|
| 69 |
|
|---|
| 70 | [VBoxVideo.OpenGLSoftwareSettings]
|
|---|
| 71 |
|
|---|
| 72 | [SourceDisksNames]
|
|---|
| 73 | 1 = %VBoxVideo.Disk%,,,""
|
|---|
| 74 | 2 = %VBoxVideo.Disk%,,,""
|
|---|
| 75 |
|
|---|
| 76 | [SourceDisksFiles]
|
|---|
| 77 | VBoxVideo.sys = 1
|
|---|
| 78 | VBoxDisp.dll = 2
|
|---|
| 79 |
|
|---|
| 80 | [Strings]
|
|---|
| 81 | REG_SZ = 0x00000000
|
|---|
| 82 | REG_MULTI_SZ = 0x00010000
|
|---|
| 83 | REG_EXPAND_SZ = 0x00020000
|
|---|
| 84 | REG_BINARY = 0x00000001
|
|---|
| 85 | REG_DWORD = 0x00010001
|
|---|
| 86 |
|
|---|
| 87 | ORACLE = "Oracle Corporation"
|
|---|
| 88 | VBoxVideo.Disk = "VirtualBox Video Driver Disk"
|
|---|
| 89 | VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter"
|
|---|