#![cfg(any(
target_os = "linux",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "netbsd",
target_os = "openbsd"
))]
pub use self::glx::types::GLXContext;
pub use x11_dl::xlib::*;
pub mod glx {
include!(concat!(env!("OUT_DIR"), "/glx_bindings.rs"));
}
pub mod glx_extra {
include!(concat!(env!("OUT_DIR"), "/glx_extra_bindings.rs"));
}