mirror of
https://github.com/open-goal/jak-project
synced 2026-06-08 12:27:57 -04:00
6446389263
* extractor: refactor and cleanup for multi-game support * deps: switch to `ghc::filesystem` as it is utf-8 everywhere by default * extractor: finally working with unicode * unicode: fix unicode cli args on windows in all `main` functions
8 lines
159 B
C++
8 lines
159 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::string utf8_from_utf16(const wchar_t* utf16_string);
|
|
std::vector<std::string> get_widechar_cli_args();
|