1 | ;
|
---|
2 | ; VirtualBox Video miniport driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
10 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
11 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
12 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | ;
|
---|
14 | ; If you received this file as part of a commercial VirtualBox
|
---|
15 | ; distribution, then only the terms of your commercial VirtualBox
|
---|
16 | ; license agreement apply instead of the previous paragraph.
|
---|
17 | ;
|
---|
18 |
|
---|
19 | [Version]
|
---|
20 | Signature="$WINDOWS NT$"
|
---|
21 | Provider=%Provider%
|
---|
22 | ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
|
---|
23 | Class=Display
|
---|
24 | ;cat DriverVer = 05/17/2007,1.04.0000
|
---|
25 | ;cat CatalogFile = VBoxVideo.cat
|
---|
26 |
|
---|
27 | [DestinationDirs]
|
---|
28 | DefaultDestDir=11
|
---|
29 | VBoxVideo.Miniport = 12 ; drivers
|
---|
30 | VBoxVideo.Display = 11 ; system32
|
---|
31 |
|
---|
32 | [Manufacturer]
|
---|
33 | %Provider%=Model
|
---|
34 |
|
---|
35 | [Model]
|
---|
36 | %VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
|
---|
37 |
|
---|
38 | [VBoxVideo]
|
---|
39 | CopyFiles=VBoxVideo.Miniport, VBoxVideo.Display
|
---|
40 |
|
---|
41 | [VBoxVideo.Miniport]
|
---|
42 | VBoxVideo.sys
|
---|
43 |
|
---|
44 | [VBoxVideo.Display]
|
---|
45 | VBoxDisp.dll
|
---|
46 |
|
---|
47 | [VBoxVideo.Services]
|
---|
48 | AddService=vboxvideo, 0x00000002, vboxvideo_Service_Inst, vboxvideo_EventLog_Inst
|
---|
49 |
|
---|
50 | [vboxvideo_Service_Inst]
|
---|
51 | ServiceType=1 ; SERVICE_KERNEL_DRIVER
|
---|
52 | StartType=1 ; SERVICE_SYSTEM_START
|
---|
53 | ErrorControl=0 ; SERVICE_ERROR_IGNORE
|
---|
54 | LoadOrderGroup=Video
|
---|
55 | ServiceBinary=%12%\VBoxVideo.sys
|
---|
56 |
|
---|
57 | [vboxvideo_EventLog_Inst]
|
---|
58 | AddReg = vboxvideo_EventLog_AddReg
|
---|
59 |
|
---|
60 | [vboxvideo_EventLog_AddReg]
|
---|
61 | HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\VBoxVideo.sys"
|
---|
62 | HKR,,TypesSupported,0x00010001,7
|
---|
63 |
|
---|
64 | [VBoxVideo.SoftwareSettings]
|
---|
65 | AddReg = vboxvideo_SoftwareDeviceSettings
|
---|
66 |
|
---|
67 | [vboxvideo_SoftwareDeviceSettings]
|
---|
68 | HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDisp
|
---|
69 | ; Set 'Full' hardware acceleration up. On W2003 the level is by default None=5, leading to software mouse cursor
|
---|
70 | HKR,, Acceleration.Level, %REG_DWORD%, 0
|
---|
71 | HKR,, VgaCompatible, %REG_DWORD%, 0
|
---|
72 |
|
---|
73 | [VBoxVideo.OpenGLSoftwareSettings]
|
---|
74 |
|
---|
75 | [SourceDisksNames]
|
---|
76 | 1 = %VBoxVideo.Disk%,,,""
|
---|
77 | ;cat 2 = %VBoxVideo.Disk%,,,""
|
---|
78 |
|
---|
79 | [SourceDisksFiles]
|
---|
80 | ;cat VBoxVideo.sys = 1
|
---|
81 | ;cat VBoxDisp.dll = 2
|
---|
82 |
|
---|
83 | [Strings]
|
---|
84 | REG_SZ = 0x00000000
|
---|
85 | REG_MULTI_SZ = 0x00010000
|
---|
86 | REG_EXPAND_SZ = 0x00020000
|
---|
87 | REG_BINARY = 0x00000001
|
---|
88 | REG_DWORD = 0x00010001
|
---|
89 |
|
---|
90 | Provider = "innotek GmbH"
|
---|
91 | VBoxVideo.Disk = "VirtualBox Video Driver Disk"
|
---|
92 | VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter"
|
---|