Lines of Code Latest Version MIT docs

Crossterm Windows API Abstractions

This crate provides some wrappers aground common used WinAPI functions.

The purpose of this library is originally meant for the crossterm, but could be used apart from it. Although, notice that it unstable right because some changes to the API could be expected.

Features

This crate provides some abstractions over reading input, console screen buffer, and handle.

The following WinAPI calls:

Example

The examples repository has more complete and verbose examples.

Screen buffer information

```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());

} ```

Handle

```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(); } ```