use std::os::raw::c_void;
use crate::base::{Boolean, CFIndex, CFOptionFlags, CFTypeID};
use crate::dictionary::CFDictionaryRef;
use crate::string::CFStringRef;
#[repr(C)]
pub struct __CFNotificationCenter(c_void);
pub type CFNotificationCenterRef = *mut __CFNotificationCenter;
pub type CFNotificationName = CFStringRef;
pub type CFNotificationCallback = extern "C" fn(
center: CFNotificationCenterRef,
observer: *mut c_void,
name: CFNotificationName,
object: *const c_void,
userInfo: CFDictionaryRef,
);
pub type CFNotificationSuspensionBehavior = CFIndex;
pub const CFNotificationSuspensionBehaviorDrop: CFNotificationSuspensionBehavior = 1;
pub const CFNotificationSuspensionBehaviorCoalesce: CFNotificationSuspensionBehavior = 2;
pub const CFNotificationSuspensionBehaviorHold: CFNotificationSuspensionBehavior = 3;
pub const CFNotificationSuspensionBehaviorDeliverImmediately: CFNotificationSuspensionBehavior = 4;
pub const kCFNotificationDeliverImmediately: CFOptionFlags = 1usize << 0;
pub const kCFNotificationPostToAllSessions: CFOptionFlags = 1usize << 1;
extern "C" {
pub fn CFNotificationCenterGetDarwinNotifyCenter() -> CFNotificationCenterRef;
#[cfg(any(target_os = "macos", target_os = "windows"))]
pub fn CFNotificationCenterGetDistributedCenter() -> CFNotificationCenterRef;
pub fn CFNotificationCenterGetLocalCenter() -> CFNotificationCenterRef;
pub fn CFNotificationCenterPostNotification(
center: CFNotificationCenterRef,
name: CFNotificationName,
object: *const c_void,
userInfo: CFDictionaryRef,
deliverImmediately: Boolean,
);
pub fn CFNotificationCenterPostNotificationWithOptions(
center: CFNotificationCenterRef,
name: CFNotificationName,
object: *const c_void,
userInfo: CFDictionaryRef,
options: CFOptionFlags,
);
pub fn CFNotificationCenterAddObserver(
center: CFNotificationCenterRef,
observer: *const c_void,
callBack: CFNotificationCallback,
name: CFStringRef,
object: *const c_void,
suspensionBehavior: CFNotificationSuspensionBehavior,
);
pub fn CFNotificationCenterRemoveEveryObserver(
center: CFNotificationCenterRef,
observer: *const c_void,
);
pub fn CFNotificationCenterRemoveObserver(
center: CFNotificationCenterRef,
observer: *const c_void,
name: CFNotificationName,
object: *const c_void,
);
pub fn CFNotificationCenterGetTypeID() -> CFTypeID;
}