diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-08-10 13:27:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 13:27:26 +0200 |
commit | 81956d42ca5d2d31c2f198b81e055a6225b6eba1 (patch) | |
tree | f227d700454c5f4dd79533ff4ba4ab0c0ea2d7a7 | |
parent | 16d73fefdb0286f58b9cba86faeaf9155484d94b (diff) | |
parent | cb52f2c9c0b701865e17093b0661f17e735feb38 (diff) |
Merge pull request #51470 from akien-mga/windows-share-denyno
FileAccessWindows: Add missing share.h include
-rw-r--r-- | drivers/windows/file_access_windows.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/windows/file_access_windows.cpp b/drivers/windows/file_access_windows.cpp index 3f97f3a40c..775c999b15 100644 --- a/drivers/windows/file_access_windows.cpp +++ b/drivers/windows/file_access_windows.cpp @@ -35,6 +35,7 @@ #include "core/os/os.h" #include "core/string/print_string.h" +#include <share.h> // _SH_DENYNO #include <shlwapi.h> #include <windows.h> |