lingxixue-new-web/.pnpm-store/v11/files/c6/607be417fc197c743c58e0f4cdb7b673ecc390586c73bbdbd0f14e2861940b4f6ccbfd42e014150f9b57082e852c4b5c66b3d0f13e15feed7cde5a22a262c2

12 lines
238 B
Plaintext

#ifndef WIN_UTILS_H
#define WIN_UTILS_H
#include <string>
#include <windows.h>
std::wstring utf8ToUtf16(std::string input);
std::string utf16ToUtf8(const WCHAR *input, DWORD length);
std::string normalizePath(std::string path);
#endif