conpty 0.1.0

A library which provides an interface for ConPTY
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    windows::build! {
        Windows::Win32::Foundation::*,
        Windows::Win32::System::Console::*,
        Windows::Win32::System::Pipes::*,
        Windows::Win32::System::Threading::*,
        Windows::Win32::System::SystemServices::*,
        Windows::Win32::System::WindowsProgramming::{INFINITE, PIPE_WAIT},
        Windows::Win32::Storage::FileSystem::*,
        Windows::Win32::Security::SECURITY_ATTRIBUTES,
    };
}