We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 043acc8 + c5bc227 commit f2adedaCopy full SHA for f2adeda
stdlib/public/Platform/winsdk.modulemap
@@ -153,6 +153,35 @@ module WinSDK [system] {
153
}
154
155
156
+ module DirectX {
157
+ module Direct3D12 {
158
+ header "d3d12.h"
159
+ export *
160
+
161
+ link "d3d12.lib"
162
+ link "dxgi.lib"
163
+ }
164
165
+ module XAudio29 {
166
+ header "xaudio2.h"
167
+ header "xaudio2fx.h"
168
169
170
+ link "xaudio2.lib"
171
172
173
+ // XInput 1.4 (Windows 10, XBox) is newer than the XInput 9.1.0 which was
174
+ // part of Vista.
175
+ module XInput14 {
176
+ header "Xinput.h"
177
178
179
+ link "xinputuap.lib"
180
181
182
+ link "dxguid.lib"
183
184
185
// FIXME(compnerd) this is a hack for the HWND typedef for DbgHelp
186
module __DirectX {
187
header "directmanipulation.h"
0 commit comments