diff options
Diffstat (limited to 'ext/io/lib.rs')
-rw-r--r-- | ext/io/lib.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/io/lib.rs b/ext/io/lib.rs index c85696f64..e0d649e0a 100644 --- a/ext/io/lib.rs +++ b/ext/io/lib.rs @@ -50,6 +50,15 @@ use winapi::um::processenv::GetStdHandle; use winapi::um::winbase; pub mod fs; +mod pipe; +#[cfg(windows)] +mod winpipe; + +pub use pipe::pipe; +pub use pipe::AsyncPipeRead; +pub use pipe::AsyncPipeWrite; +pub use pipe::PipeRead; +pub use pipe::PipeWrite; // Store the stdio fd/handles in global statics in order to keep them // alive for the duration of the application since the last handle/fd |