X11 implementation

This commit is contained in:
Pierre Krieger 2014-07-27 15:10:58 +02:00
parent bf2773c233
commit 4028b925d3
3 changed files with 595 additions and 0 deletions

View file

@ -8,9 +8,13 @@ pub use hints::{Hints, ClientAPI, Profile};
#[cfg(windows)]
use winimpl = win32;
#[cfg(unix)]
use winimpl = x11;
#[cfg(windows)]
mod win32;
#[cfg(unix)]
mod x11;
mod events;
mod hints;