This crate provides some wrappers aground common used WinApi functions. This crate is used by crossterm and is very unstable right now and some changes could be expected.
This crate provides some abstractions over:
Here are some examples do demonstrate how to work whit this crate. Please see examples for more
```rust use crossterm_winapi::{ScreenBuffer, Handle};
fn printscreenbufferinformation() { let screenbuffer = ScreenBuffer::current().unwrap();
// get console screen buffer information
let csbi = screen_buffer.info().unwrap();
println!("cursor post: {:?}", csbi.cursor_pos());
println!("attributes: {:?}", csbi.attributes());
println!("terminal window dimentions {:?}", csbi.terminal_window());
println!("terminal size {:?}", csbi.terminal_size());
} ```
```rust use crossterm_winapi::{HandleType, Handle};
fn getdifferenthandletypes() { let outputhandle = Handle::new(HandleType::OutputHandle).unwrap(); let outputhandle = Handle::new(HandleType::InputHandle).unwrap(); let curroutputhandle = Handle::new(HandleType::CurrentOutputHandle).unwrap(); let curroutput_handle = Handle::new(HandleType::CurrentInputHandle).unwrap(); } ```
I wanted to expose some of the api crossterm uses for WinApi. 1. I thought it would be helpful for other people to, to have a small rust seemable abstraction over the WinApi bindings. 2. I have some future plans for crossterm wherefore I needed to seperate the WinAPi logic out of the currenbt librarie.