pipedconsole 0.0.2

Piped console is a (currently windows-only) rust crate wich allows you to easily manage two or more different consoles from within one process.
1
2
3
4
5
6
7
8

//! This is an **internal** module, used for communication
//! through a pipe using the [`send`] and [`receive`] function.
//! 
//! You should not be able to visit this in the docs.

#[path = r"com\send.rs"] pub(crate) mod send;
#[path = r"com\receive.rs"] pub(crate) mod receive;