summaryrefslogtreecommitdiff
path: root/winpty/src/lib.rs
blob: 308843a92df0d8696385f93b5934a75aa34452fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(feature = "cargo-clippy", deny(clippy, if_not_else, enum_glob_use, wrong_pub_self_convention))]

#[macro_use]
#[cfg(windows)]
extern crate bitflags;
#[cfg(windows)]
extern crate widestring;
#[cfg(windows)]
extern crate winpty_sys;

#[cfg(windows)]
pub mod windows;

#[cfg(windows)]
pub use windows::*;