Skip to content

Commit fe37d77

Browse files
committed
Platform: extend WinSDK module
Update the module definitions to include ShellAPI and Path API Set. These are used by Foundation for FileManager.
1 parent bbfc064 commit fe37d77

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

stdlib/public/Platform/winsdk.modulemap

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ module WinSDK [system] [extern_c] {
5454
export *
5555
}
5656

57+
// api-ms-win-core-Path-l1-0.dll
58+
module path {
59+
header "PathCch.h"
60+
export *
61+
}
62+
5763
// api-ms-win-core-processthreads-l1-1-2.dll
5864
module processthreads {
5965
header "processthreadsapi.h"
@@ -79,5 +85,9 @@ module WinSDK [system] [extern_c] {
7985
}
8086
}
8187

88+
module Shell {
89+
header "ShlObj.h"
90+
export *
91+
}
8292
}
8393

0 commit comments

Comments
 (0)