b991848829687b212afc9d3c3baadf06a353d7e40ea4e99338a9e5d0d44354357770592dfe5ca9624d5deac215c7587dc112357e42a2dc4184bbc895be9964 239 B

1234567891011
  1. #ifndef WIN_UTILS_H
  2. #define WIN_UTILS_H
  3. #include <string>
  4. #include <windows.h>
  5. std::wstring utf8ToUtf16(std::string input);
  6. std::string utf16ToUtf8(const WCHAR *input, size_t length);
  7. std::string normalizePath(std::string path);
  8. #endif