transparent 0.4.1

A crate for running processes on a virtual desktop / virtual X server environment.
Documentation
1
2
3
4
5
6
7
8
9
10
#![feature(exit_status_error)]

#[cfg(windows)]
#[path = "build-windows.rs"]
mod windows;

fn main() {
    #[cfg(windows)]
    windows::main();
}