This commit is contained in:
Felix S. Klock II 2014-08-03 18:30:31 +02:00
parent d574f6f1bb
commit f1993be9ea
2 changed files with 4 additions and 2 deletions

View file

@ -23,8 +23,10 @@ pub use events::*;
#[cfg(windows)]
use winimpl = win32;
#[cfg(unix)]
#[cfg(target_os = "linux")]
use winimpl = x11;
#[cfg(target_os = "macos")]
use winimpl = osx;
#[cfg(target_os = "win32")]
mod win32;

View file

@ -1,6 +1,6 @@
//! Dummy implementation for OS/X to make gl-init-rs compile on this platform
use WindowBuilder;
use {Event, WindowBuilder};
pub struct Window;