1 | ;
|
---|
2 | ; VirtualBox Video miniport driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006 InnoTek Systemberatung 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 |
|
---|
25 | [DestinationDirs]
|
---|
26 | DefaultDestDir=11
|
---|
27 | VBoxVideo.Miniport = 12 ; drivers
|
---|
28 | VBoxVideo.Display = 11 ; system32
|
---|
29 |
|
---|
30 | [Manufacturer]
|
---|
31 | %Provider%=Model
|
---|
32 |
|
---|
33 | [Model]
|
---|
34 | %VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
|
---|
35 |
|
---|
36 | [VBoxVideo]
|
---|
37 | CopyFiles=VBoxVideo.Miniport, VBoxVideo.Display
|
---|
38 |
|
---|
39 | [VBoxVideo.Miniport]
|
---|
40 | VBoxVideo.sys
|
---|
41 |
|
---|
42 | [VBoxVideo.Display]
|
---|
43 | VBoxDisp.dll
|
---|
44 |
|
---|
45 | [VBoxVideo.Services]
|
---|
46 | AddService=vboxvideo, 0x00000002, vboxvideo_Service_Inst, vboxvideo_EventLog_Inst
|
---|
47 |
|
---|
48 | [vboxvideo_Service_Inst]
|
---|
49 | ServiceType=1 ; SERVICE_KERNEL_DRIVER
|
---|
50 | StartType=1 ; SERVICE_SYSTEM_START
|
---|
51 | ErrorControl=0 ; SERVICE_ERROR_IGNORE
|
---|
52 | LoadOrderGroup=Video
|
---|
53 | ServiceBinary=%12%\VBoxVideo.sys
|
---|
54 |
|
---|
55 | [vboxvideo_EventLog_Inst]
|
---|
56 | AddReg = vboxvideo_EventLog_AddReg
|
---|
57 |
|
---|
58 | [vboxvideo_EventLog_AddReg]
|
---|
59 | HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\VBoxVideo.sys"
|
---|
60 | HKR,,TypesSupported,0x00010001,7
|
---|
61 |
|
---|
62 | [VBoxVideo.SoftwareSettings]
|
---|
63 | AddReg = vboxvideo_SoftwareDeviceSettings
|
---|
64 |
|
---|
65 | [vboxvideo_SoftwareDeviceSettings]
|
---|
66 | HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDisp
|
---|
67 | HKR,, VgaCompatible, %REG_DWORD%, 0
|
---|
68 |
|
---|
69 | [VBoxVideo.OpenGLSoftwareSettings]
|
---|
70 |
|
---|
71 | [SourceDisksNames]
|
---|
72 | 1 = %VBoxVideo.Disk%,,,""
|
---|
73 |
|
---|
74 | [SourceDisksFiles]
|
---|
75 |
|
---|
76 | [Strings]
|
---|
77 | REG_SZ = 0x00000000
|
---|
78 | REG_MULTI_SZ = 0x00010000
|
---|
79 | REG_EXPAND_SZ = 0x00020000
|
---|
80 | REG_BINARY = 0x00000001
|
---|
81 | REG_DWORD = 0x00010001
|
---|
82 |
|
---|
83 | Provider = "InnoTek Systemberatung GmbH"
|
---|
84 | VBoxVideo.Disk = "VirtualBox Video Driver Disk"
|
---|
85 | VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter"
|
---|