mirror of
https://github.com/decompals/wibo.git
synced 2025-08-15 08:29:07 +00:00
* GetLocaleInfoW for ee-as.exe 991111b * Try to do it the right way * 3rd time's the charm? * round 4 * it doesn't matter now what happens i will never give up the fight * comments * fin
7 lines
262 B
C++
7 lines
262 B
C++
#include <string>
|
|
#include <vector>
|
|
|
|
size_t wstrlen(const uint16_t *str);
|
|
size_t wstrncpy(uint16_t *dst, const uint16_t *src, size_t n);
|
|
std::string wideStringToString(const uint16_t *src, int len = -1);
|
|
std::vector<uint16_t> stringToWideString(const char *src); |