Making string struct a bit more simple and support only utf8.

Still just ascii for now but a bit easier to manager.
Use [..]A() functions from win api to not have to convert to wide char everywhere
This commit is contained in:
2025-03-05 15:56:56 -05:00
parent 09dc26ae79
commit 764824ff24
10 changed files with 397 additions and 250 deletions

View File

@@ -44,6 +44,6 @@ void Compile()
int main(int argc, char* argv[])
{
auto* stream = IOFromFile(ConstString("bleeblou"), ConstString("w"));
auto* stream = IOFromFile(ConstString("XF"), ConstString("w"));
return 0;
}