Skip to content

Commit 1ff7823

Browse files
authored
Merge pull request #21369 from compnerd/winsdk
platform: widen winsdk modulemap
2 parents 38aa5d3 + df5712d commit 1ff7823

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

stdlib/public/Platform/winsdk.modulemap

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,36 @@
1212

1313
module WinSDK [system] [extern_c] {
1414
module core {
15+
// api-ms-win-core-errhandling-l1-1-0.dll
16+
module errhandling {
17+
header "errhandlingapi.h"
18+
export *
19+
}
20+
21+
// api-ms-win-core-file-l1-1-0.dll
22+
module file {
23+
header "fileapi.h"
24+
export *
25+
}
26+
1527
// api-ms-win-core-handle-l1-1-0.dll
1628
module handle {
1729
header "handleapi.h"
1830
export *
1931
}
2032

33+
// api-ms-win-core-libloader-l1-1-0.dll
34+
module libloader {
35+
header "libloaderapi.h"
36+
export *
37+
}
38+
39+
// api-ms-win-core-namedpipe-l1-1-2-0.dll
40+
module namedpipe {
41+
header "namedpipeapi.h"
42+
export *
43+
}
44+
2145
// api-ms-win-core-processthreads-l1-1-2.dll
2246
module processthreads {
2347
header "processthreadsapi.h"

0 commit comments

Comments
 (0)