gio_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")]
5
6pub use ffi;
7
8mod auto;
9pub use auto::*;
10
11mod input_stream;
12mod output_stream;
13
14pub mod functions {
15 pub use super::auto::functions::*;
16}
17
18pub mod prelude {
19 pub use gio::prelude::*;
20
21 pub use super::auto::traits::*;
22 pub use super::input_stream::Win32InputStreamExtManual;
23 pub use super::output_stream::Win32OutputStreamExtManual;
24}