Skip to content

Commit 6a43108

Browse files
authored
Merge pull request swiftlang#34147 from egorzhdan/winsdk-ioctl
WinSDK: extract System submodule
2 parents 24c80a3 + ae9715a commit 6a43108

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

stdlib/public/Platform/winsdk.modulemap

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,6 @@ module WinSDK [system] {
172172
link "NetAPI32.Lib"
173173
}
174174

175-
module DbgHelp {
176-
header "DbgHelp.h"
177-
export *
178-
179-
link "DbgHelp.Lib"
180-
}
181-
182175
module DWM {
183176
header "dwmapi.h"
184177
export *
@@ -252,6 +245,20 @@ module WinSDK [system] {
252245
link "shcore.lib"
253246
}
254247

248+
module System {
249+
module DbgHelp {
250+
header "DbgHelp.h"
251+
export *
252+
253+
link "DbgHelp.Lib"
254+
}
255+
256+
module IOCTL {
257+
header "winioctl.h"
258+
export *
259+
}
260+
}
261+
255262
module OLE32 {
256263
header "oaidl.h"
257264
export *

0 commit comments

Comments
 (0)