mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-27 23:51:30 +11:00
13 lines
275 B
Rust
13 lines
275 B
Rust
/// WGL bindings
|
|
pub mod wgl {
|
|
include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
|
|
}
|
|
|
|
/// Functions that are not necessarly always available
|
|
pub mod wgl_extra {
|
|
include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
|
|
}
|
|
|
|
#[link(name = "opengl32")]
|
|
extern {}
|