Skip to content

Commit

Permalink
WinSDK: extract System submodule with winioctl.h
Browse files Browse the repository at this point in the history
Currently this header gets included into `WinSDK.WinSock2` via windows.h & winscard.h
  • Loading branch information
egorzhdan committed Oct 2, 2020
1 parent 3c386d8 commit ae9715a
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions stdlib/public/Platform/winsdk.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,6 @@ module WinSDK [system] {
link "NetAPI32.Lib"
}

module DbgHelp {
header "DbgHelp.h"
export *

link "DbgHelp.Lib"
}

module DWM {
header "dwmapi.h"
export *
Expand Down Expand Up @@ -244,6 +237,20 @@ module WinSDK [system] {
link "shcore.lib"
}

module System {
module DbgHelp {
header "DbgHelp.h"
export *

link "DbgHelp.Lib"
}

module IOCTL {
header "winioctl.h"
export *
}
}

module OLE32 {
header "oaidl.h"
export *
Expand Down

0 comments on commit ae9715a

Please sign in to comment.