Files
sm-emby-share/windows/runner/utils.h
T

17 lines
240 B
C++
Raw Normal View History

2026-07-14 11:11:36 +08:00
#ifndef RUNNER_UTILS_H_
#define RUNNER_UTILS_H_
#include <string>
#include <vector>
void CreateAndAttachConsole();
std::string Utf8FromUtf16(const wchar_t* utf16_string);
std::vector<std::string> GetCommandLineArguments();
#endif