soup/
lib.rs

1#![allow(dead_code)]
2
3extern crate soup_sys as ffi;
4
5/// Asserts that this is the main thread and `gtk::init` has been called.
6macro_rules! assert_initialized_main_thread {
7    () => {};
8}
9
10macro_rules! skip_assert_initialized {
11    () => {};
12}
13
14pub use glib::Error;
15
16mod auto;
17pub use auto::*;
18