glutin_wgl_sys/lib.rs
1#![cfg(windows)]
2#![allow(clippy::too_many_arguments)]
3#![allow(clippy::missing_safety_doc)]
4#![allow(clippy::manual_non_exhaustive)]
5#![allow(clippy::unnecessary_cast)]
6#![allow(unused_imports)]
7#![allow(unknown_lints, clippy::missing_transmute_annotations)]
8
9/// WGL bindings
10pub mod wgl {
11 include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
12}
13
14/// Functions that are not necessarily always available
15pub mod wgl_extra {
16 include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
17}
18
19#[link(name = "opengl32")]
20extern "C" {}