VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxWddm.inf@ 94927

Last change on this file since 94927 was 94485, checked in by vboxsync, 3 years ago

WDDM: added VBOX_WITH_WDDM_DX (not enabled yet) to include the new driver into the additions installer. bugref:9845

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1; $Id: VBoxWddm.inf 94485 2022-04-06 07:00:56Z vboxsync $
2;; @file
3; VirtualBox Video Wddm driver
4;
5
6;
7; Copyright (C) 2011-2022 Oracle Corporation
8;
9; This file is part of VirtualBox Open Source Edition (OSE), as
10; available from http://www.virtualbox.org. This file is free software;
11; you can redistribute it and/or modify it under the terms of the GNU
12; General Public License (GPL) as published by the Free Software
13; Foundation, in version 2 as it comes in the "COPYING" file of the
14; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17
18[Version]
19Signature="$WINDOWS NT$"
20Provider=%ORACLE%
21ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
22Class=Display
23DriverPackageType=PlugAndPlay
24;edit-DriverVer=02/26/2010,1.00.0000
25;cat CatalogFile = VBoxWddm.cat
26
27[DestinationDirs]
28DefaultDestDir=11
29VBoxVideo.Miniport = 12 ; drivers
30VBoxVideo.Display = 11 ; system32
31;amd64 VBoxVideo.Display_wow64 = 10,SysWow64 ; SysWow64
32
33[Manufacturer]
34;x86 %ORACLE%=Model, NTx86.6.0
35;amd64 %ORACLE%=Model, NTamd64.6.0
36
37;amd64 [Model.NTamd64.6.0]
38;x86 [Model.NTx86.6.0]
39%VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
40
41[VBoxVideo]
42FeatureScore = F8
43Include = msdv.inf
44;x86 CopyFiles = VBoxVideo.Miniport, VBoxVideo.Display
45;amd64 CopyFiles = VBoxVideo.Miniport, VBoxVideo.Display, VBoxVideo.Display_wow64
46AddReg = VBoxVideo_SoftwareDeviceSettings
47;todo: clear XPDM driver settings: DelReg = VBoxVideo_RemoveDeviceSettings
48RegisterDlls = VBoxVideo_RegisterDlls
49
50[VBoxVideo.Miniport]
51VBoxWddm.sys
52
53[VBoxVideo.Display]
54;dispd3d VBoxDispD3D.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
55;dispdx VBoxDX.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
56;mesa3d VBoxNine.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
57;mesa3d VBoxSVGA.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
58;mesa3d VBoxICD.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
59;mesa3d VBoxGL.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
60
61;amd64 [VBoxVideo.Display_wow64]
62;amd64 ;dispd3d VBoxDispD3D-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
63;amd64 ;dispdx VBoxDX-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
64;amd64 ;mesa3d VBoxNine-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
65;amd64 ;mesa3d VBoxSVGA-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
66;amd64 ;mesa3d VBoxICD-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
67;amd64 ;mesa3d VBoxGL-x86.dll,,,0x00004000 ; COPYFLG_IN_USE_TRY_RENAME
68
69[VBoxVideo_SoftwareDeviceSettings]
70;dispd3d HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDispD3D
71;dispd3d HKR,, UserModeDriverName, %REG_MULTI_SZ%, VBoxDispD3D.dll
72;amd64 ;dispd3d HKR,, UserModeDriverNameWow, %REG_MULTI_SZ%, VBoxDispD3D-x86.dll
73;dispdx HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDispD3D, VBoxDX, VBoxDX
74;dispdx HKR,, UserModeDriverName, %REG_MULTI_SZ%, VBoxDispD3D.dll, VBoxDX.dll, VBoxDX.dll
75;amd64 ;dispdx HKR,, UserModeDriverNameWow, %REG_MULTI_SZ%, VBoxDispD3D-x86.dll, VBoxDX-x86.dll, VBoxDX-x86.dll
76;mesa3d HKR,, OpenGLDriverName, %REG_MULTI_SZ%, VBoxICD
77;amd64 ;mesa3d HKR,, OpenGLDriverNameWoW, %REG_MULTI_SZ%, VBoxICD-x86
78;mesa3d HKR,, OpenGLFlags, %REG_DWORD%, 0x00000001
79;amd64 ;mesa3d HKR,, OpenGLFlagsWoW, %REG_DWORD%, 0x00000001
80;mesa3d HKR,, OpenGLVersion, %REG_DWORD%, 0x00000001
81;amd64 ;mesa3d HKR,, OpenGLVersionWoW, %REG_DWORD%, 0x00000001
82HKR,, VgaCompatible, %REG_DWORD%, 0
83
84[VBoxVideo_RegisterDlls]
85
86
87[VBoxVideo.Services]
88AddService=VBoxWddm, 0x00000002, VBoxVideo_Service_Inst, VBoxVideo_EventLog_Inst
89
90[VBoxVideo_Service_Inst]
91ServiceType=1 ; SERVICE_KERNEL_DRIVER
92StartType=3 ; SERVICE_DEMAND_START
93ErrorControl=0 ; SERVICE_ERROR_IGNORE
94LoadOrderGroup=Video
95ServiceBinary=%12%\VBoxWddm.sys
96
97[VBoxVideo_EventLog_Inst]
98AddReg = VBoxVideo_EventLog_AddReg
99
100[VBoxVideo_EventLog_AddReg]
101HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll;%%SystemRoot%%\System32\drivers\VBoxWddm.sys"
102HKR,,TypesSupported,0x00010001,7
103
104[SourceDisksNames]
1051 = %VBoxVideo.Disk%,,,""
106
107[SourceDisksFiles]
108VBoxWddm.sys = 1
109;amd64 ;dispd3d VBoxDispD3D-x86.dll = 1
110;amd64 ;dispdx VBoxDX-x86.dll = 1
111;amd64 ;mesa3d VBoxNine-x86.dll = 1
112;amd64 ;mesa3d VBoxSVGA-x86.dll = 1
113;amd64 ;mesa3d VBoxICD-x86.dll = 1
114;amd64 ;mesa3d VBoxGL-x86.dll = 1
115;dispd3d VBoxDispD3D.dll = 1
116;dispdx VBoxDX.dll = 1
117;mesa3d VBoxNine.dll = 1
118;mesa3d VBoxSVGA.dll = 1
119;mesa3d VBoxICD.dll = 1
120;mesa3d VBoxGL.dll = 1
121
122[Strings]
123REG_SZ = 0x00000000
124REG_MULTI_SZ = 0x00010000
125REG_EXPAND_SZ = 0x00020000
126REG_BINARY = 0x00000001
127REG_DWORD = 0x00010001
128
129ORACLE = "Oracle Corporation"
130VBoxVideo.Disk = "VirtualBox Video Driver Disk"
131VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter (WDDM)"
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette