This commit is contained in:
2024-04-26 15:37:28 +08:00
parent b6cffd8a97
commit c9152bffa8
13 changed files with 171 additions and 71 deletions

View File

@ -1,8 +1,14 @@
#pragma once
#include "YYCCInternal.hpp"
#if YYCC_OS == YYCC_OS_WINDOWS
#include <string>
namespace YYCC::IOHelper {
void GetCmdLine(std::string&);
FILE* UTF8FOpen(const char* u8_filepath, const char* u8_mode);
void Gets(std::string& u8cmd);
FILE* FOpen(const char* u8_filepath, const char* u8_mode);
}
#endif