waybar_cffi_sys/
lib.rs

1#![allow(improper_ctypes)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(non_upper_case_globals)]
5#![allow(clippy::approx_constant)]
6#![allow(clippy::too_many_arguments)]
7#![allow(clippy::type_complexity)]
8#![allow(clippy::useless_transmute)]
9
10pub use gtk;
11pub use libc;
12
13mod raw;
14pub use raw::*;
15
16/// The version of Waybar the bindings were built against.
17pub static WAYBAR_VERSION: &str = include_str!("../WAYBAR_VERSION");