bc/bc/os/CommandLine.hpp

11 lines
174 B
C++
Raw Normal View History

#ifndef BC_OS_COMMAND_LINE_HPP
#define BC_OS_COMMAND_LINE_HPP
#include <cstdint>
const char* OsGetCommandLine();
void OsSetCommandLine(int32_t argc, char** argv);
#endif