minicrossterm/src/lib.rs

15 lines
265 B
Rust
Raw Normal View History

2018-01-04 00:43:54 +11:00
#[macro_use]
mod shared;
2018-01-04 00:43:54 +11:00
mod kernel;
pub mod crossterm_cursor;
pub mod crossterm_style;
pub mod crossterm_terminal;
2018-01-04 00:43:54 +11:00
use shared::traits::{Construct, Empty};
2018-01-04 00:43:54 +11:00
#[cfg(windows)]
extern crate kernel32;
#[cfg(windows)]
extern crate winapi;
#[cfg(unix)]
extern crate libc;