winit-sonoma-fix/src/win32/gl.rs

13 lines
275 B
Rust
Raw Normal View History

/// WGL bindings
pub mod wgl {
2014-12-24 18:09:16 +11:00
include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
}
/// Functions that are not necessarly always available
pub mod wgl_extra {
2014-12-24 18:09:16 +11:00
include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
}
#[link(name = "opengl32")]
extern {}