Skip to content

Commit 18a59bc

Browse files
authored
Merge pull request #22153 from compnerd/winsdk
WinSDK: extend the module definition for Foundation
2 parents d388837 + c1da7a2 commit 18a59bc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

stdlib/public/Platform/winsdk.modulemap

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,25 @@ module WinSDK [system] [extern_c] {
8585
}
8686
}
8787

88+
// FIXME(compnerd) this is a hack for the HWND typedef for DbgHelp
89+
module __DirectX {
90+
header "directmanipulation.h"
91+
export *
92+
}
93+
94+
module DbgHelp {
95+
header "DbgHelp.h"
96+
export *
97+
}
98+
8899
module Shell {
89100
header "ShlObj.h"
90101
export *
91102
}
103+
104+
module WinCrypt {
105+
header "wincrypt.h"
106+
export *
107+
}
92108
}
93109

0 commit comments

Comments
 (0)