Platform: extend WinSDK module

Update the module definitions to include ShellAPI and Path API Set.
These are used by Foundation for FileManager.
This commit is contained in:
Saleem Abdulrasool
2019-01-06 20:22:53 -08:00
parent bbfc0649ed
commit fe37d7752a

View File

@@ -54,6 +54,12 @@ module WinSDK [system] [extern_c] {
export *
}
// api-ms-win-core-Path-l1-0.dll
module path {
header "PathCch.h"
export *
}
// api-ms-win-core-processthreads-l1-1-2.dll
module processthreads {
header "processthreadsapi.h"
@@ -79,5 +85,9 @@ module WinSDK [system] [extern_c] {
}
}
module Shell {
header "ShlObj.h"
export *
}
}