rust-macios 0.4.2

Apple Frameworks for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use libc::c_void;

use crate::declare_CFType;

#[derive(Debug)]
#[repr(C)]
pub struct __CFArray(c_void);

/// A reference to a CFString object.
pub type CFArrayRef = *const __CFArray;

declare_CFType! {
    /// A reference to a CFString object.
    #[repr(C)]
    CFArray, CFArrayRef
}