mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 16:49:59 +01:00
14 lines
170 B
C++
14 lines
170 B
C++
#pragma once
|
|
|
|
namespace utils
|
|
{
|
|
enum console_stream
|
|
{
|
|
std_out = 0x01,
|
|
std_err = 0x02,
|
|
std_in = 0x04,
|
|
};
|
|
|
|
void attach_console(int stream, bool open_console);
|
|
}
|