Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
12 lines
238 B
Plaintext
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
|