Open treeswift opened 1 year ago
Make sure UTF-8 paths are used everywhere. Replace direct ASCII WINAPI calls with wchar_t equivalents. If possible, use UTF-8<>UTF-16 converters provided by the C++ runtime (for consistency with std::filesystem).
wchar_t
std::filesystem
Limitation: UTF-8 awareness of stock MinGW POSIX functions.
Make sure UTF-8 paths are used everywhere. Replace direct ASCII WINAPI calls with
wchar_t
equivalents. If possible, use UTF-8<>UTF-16 converters provided by the C++ runtime (for consistency withstd::filesystem
).