Skip to main content

lightdm/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3macro_rules! skip_assert_initialized {
4    () => {};
5}
6
7macro_rules! assert_initialized_main_thread {
8    () => {};
9}
10
11pub use ffi;
12pub use glib;
13
14#[allow(unused_imports)]
15mod auto;
16pub use auto::*;
17
18mod greeter;
19
20pub mod prelude {
21    pub use super::auto::traits::*;
22    pub use super::greeter::GreeterExtManual;
23}
24
25pub mod functions {
26    pub use super::auto::functions::*;
27}