/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ClientShared/StringConv.h
14 строк
337 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#pragma once #include <string> namespace RBX { #if defined(_WIN32) typedef std::wstring SysPathString; #else // assume we're on Linux / Unix, which usually don't require conversions typedef std::string SysPathString; #endif std::string utf8_encode(const SysPathString &path); SysPathString utf8_decode(const std::string &path); }