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