rpcsx/rpcs3/util/console.h

18 lines
265 B
C
Raw Normal View History

2024-04-20 12:38:14 +02:00
#pragma once
2024-04-16 22:29:38 +02:00
#include <string_view>
2024-04-20 12:38:14 +02:00
namespace utils
{
enum console_stream
{
std_out = 0x01,
std_err = 0x02,
std_in = 0x04,
};
void attach_console(int stream, bool open_console);
2024-04-16 22:29:38 +02:00
void output_stderr(std::string_view str, bool with_endline = false);
2024-04-20 12:38:14 +02:00
}