glib_win32/lib.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![doc = include_str!("../README.md")]
5pub use ffi;
6
7mod auto;
8pub use auto::*;
9mod functions;
10
11pub use auto::functions::*;
12pub use functions::*;
13
14pub mod prelude {
15 pub use glib::prelude::*;
16}