From 99afa6491f4e968c69704490545df9586b7a35f5 Mon Sep 17 00:00:00 2001 From: Daniel Duan Date: Mon, 7 Sep 2020 17:40:10 -0700 Subject: [PATCH] WinSDK: add Shell32 This header and .lib features useful APIs such as [SHFileOperation](https://docs.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shfileoperationw), which seems to be the preferred way to manipulate file systems for certain things. --- stdlib/public/Platform/winsdk.modulemap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/public/Platform/winsdk.modulemap b/stdlib/public/Platform/winsdk.modulemap index fc0d961bd50a9..6b55a92005027 100644 --- a/stdlib/public/Platform/winsdk.modulemap +++ b/stdlib/public/Platform/winsdk.modulemap @@ -180,9 +180,11 @@ module WinSDK [system] { } module ShellAPI { + header "shellapi.h" header "Shlwapi.h" export * + link "Shell32.Lib" link "ShLwApi.Lib" }