barrier/src/lib/io
Povilas Kanapickas d24f368efe Correctly open files with non-ASCII paths on Windows
This fixes #976, fixes #974, fixes #444.

On Windows the standard stream open() functions expect bytes encoded in
current system encoding, not UTF8. Since we're dealing with UTF8
throughout the application this results in wrong paths being passed and
failure to open files. As a solution, we convert the paths to UTF16 via
the WCHAR character type and use the special Windows-specific overloads
of open() functions.
2021-10-30 01:03:09 +03:00
..
CMakeLists.txt Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
IStream.h Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
StreamBuffer.cpp Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
StreamBuffer.h Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
StreamFilter.cpp Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
StreamFilter.h Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
XIO.cpp Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
XIO.h Remove trailing whitespaces 2020-12-09 14:02:28 +10:00
fstream.cpp Correctly open files with non-ASCII paths on Windows 2021-10-30 01:03:09 +03:00
fstream.h Correctly open files with non-ASCII paths on Windows 2021-10-30 01:03:09 +03:00