glib-win32 0.22.6

Rust bindings for the GLibWin32 library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Take a look at the license at the top of the repository in the LICENSE file.

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
pub use glib_win32_sys as ffi;

mod auto;
pub use auto::*;
mod functions;

pub use auto::functions::*;
pub use functions::*;

pub mod prelude {
    pub use glib::prelude::*;
}