xfconf 0.1.0

Provides access to xfconf, Xfce's desktop configuration system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// rustdoc-stripper-ignore-next
/// Shuts down and frees any resources consumed by the Xfconf library.
///
/// If [`init()`][crate::init()] is called multiple times, [`shutdown()`][crate::shutdown()] must be
/// called an equal number of times to shut down the library.
///
/// # Safety
///
/// You must ensure that there are no [crate::Channel] instances that are live
pub unsafe fn shutdown() {
    unsafe {
        ffi::xfconf_shutdown();
    }
}