1// Take a look at the license at the top of the repository in the LICENSE file. 2 3#[doc(alias = "adw_init")] 4pub fn init() -> Result<(), glib::BoolError> { 5 skip_assert_initialized!(); 6 gtk::init()?; 7 unsafe { 8 ffi::adw_init(); 9 } 10 Ok(()) 11}