rust_macios/core_foundation/
cf_dictionary.rs

1use libc::c_void;
2
3use crate::declare_CFType;
4
5#[derive(Debug)]
6#[repr(C)]
7pub struct __CFDictionary(c_void);
8
9/// A reference to a CFString object.
10pub type CFDictionaryRef = *const __CFDictionary;
11
12declare_CFType! {
13    /// A reference to a CFString object.
14    #[repr(C)]
15    CFDictionary, CFDictionaryRef
16}