teamy-mft 0.7.1

TeamDman's Master File Table CLI and library for NTFS.
//! Console related utilities
//! Attaching and detaching the console is useful when dealing with elevation, and when dealing with hiding the console window.
//! When elevating, I want the logs to go to the same console the user started the program from.
//! When creating system tray applications, I want the console to be hidden by default, but have it be restorable if the user uses a tray action to show logs.

mod ansi_support;
mod attach_to_existing;
mod check_inheriting;
mod create;
mod ctrl_c_handler;
mod detach;
mod handles;
mod init;
mod terminal_size;

pub use ansi_support::*;
pub use attach_to_existing::*;
pub use check_inheriting::*;
pub use create::*;
pub use ctrl_c_handler::*;
pub use detach::*;
pub use handles::*;
pub use init::*;
pub use terminal_size::*;