Chess GUI #431
benthevining
started this conversation in
Ideas
Chess GUI
#431
Replies: 1 comment
-
struct ChildProcess
{
ChildProcess(
const std::filesystem::path& executablePath,
std::span<const string_view> arguments,
std::function<void(int)>&& onKilled // called if process dies, gets return code
);
// appends final \n when sending to process stdin
void write_line(string_view);
// non-blocking, returns immediately
std::future<std::string> read_line();
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What GUI library to use?
Beta Was this translation helpful? Give feedback.
All reactions