aboutsummaryrefslogtreecommitdiff
path: root/vcpkg-ports/libflac/uwp-createfile2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg-ports/libflac/uwp-createfile2.patch')
-rw-r--r--vcpkg-ports/libflac/uwp-createfile2.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/vcpkg-ports/libflac/uwp-createfile2.patch b/vcpkg-ports/libflac/uwp-createfile2.patch
new file mode 100644
index 00000000..c7836a50
--- /dev/null
+++ b/vcpkg-ports/libflac/uwp-createfile2.patch
@@ -0,0 +1,41 @@
+diff --git a/src/share/win_utf8_io/win_utf8_io.c b/src/share/win_utf8_io/win_utf8_io.c
+index af6d0f4..6a6de15 100644
+--- a/src/share/win_utf8_io/win_utf8_io.c
++++ b/src/share/win_utf8_io/win_utf8_io.c
+@@ -160,6 +160,27 @@ int get_utf8_argv(int *argc, char ***argv)
+ /* similar to CreateFileW but accepts UTF-8 encoded lpFileName */
+ HANDLE WINAPI CreateFile_utf8(const char *lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile)
+ {
++#if defined (WINAPI_FAMILY_PARTITION) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
++ HANDLE handle = INVALID_HANDLE_VALUE;
++
++ if (!flac_internal_get_utf8_filenames())
++ return handle;
++
++ wchar_t *wname;
++
++ if ((wname = wchar_from_utf8(lpFileName)) != NULL)
++ {
++ CREATEFILE2_EXTENDED_PARAMETERS cfParams = {0};
++ cfParams.dwSize = sizeof(CREATEFILE2_EXTENDED_PARAMETERS);
++ cfParams.dwFileAttributes = dwFlagsAndAttributes & FILE_ATTRIBUTE_NORMAL;
++ cfParams.lpSecurityAttributes = lpSecurityAttributes;
++ cfParams.hTemplateFile = hTemplateFile;
++ handle = CreateFile2(wname, dwDesiredAccess, dwShareMode, dwCreationDisposition, &cfParams);
++ free(wname);
++ }
++
++ return handle;
++#else
+ wchar_t *wname;
+ HANDLE handle = INVALID_HANDLE_VALUE;
+
+@@ -180,6 +201,7 @@ HANDLE WINAPI CreateFile_utf8(const char *lpFileName, DWORD dwDesiredAccess, DWO
+ }
+
+ return handle;
++#endif
+ }
+
+ /* return number of characters in the UTF-8 string */
+ \ No newline at end of file