fix Windows support

drives button is missing
This commit is contained in:
tildearrow 2025-09-27 14:56:12 -05:00
parent 4df9643963
commit 963ec94fd0
4 changed files with 78 additions and 7 deletions

View file

@ -131,3 +131,11 @@ String utf16To8(const wchar_t* s) {
}
return ret;
}
WString utf8To16(String& in) {
return utf8To16(in.c_str());
}
String utf16To8(WString& in) {
return utf16To8(in.c_str());
}