minicrossterm/src/lib.rs

16 lines
290 B
Rust
Raw Normal View History

2018-01-04 00:43:54 +11:00
#[macro_use]
pub mod shared;
pub mod terminal_cursor;
pub mod terminal_style;
pub mod terminal;
2018-01-04 00:43:54 +11:00
mod kernel;
use shared::traits::{Construct, Empty};
2018-01-04 00:43:54 +11:00
pub use terminal_cursor::cursor;
pub use terminal_style::paint;
#[cfg(windows)]
extern crate kernel32;
#[cfg(windows)]
extern crate winapi;