objc2-audio-toolbox 0.3.0

Bindings to the AudioToolbox framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;

use crate::*;

extern "C-unwind" {
    /// Print the internal state of an object to os_log.
    pub fn CAShow(in_object: NonNull<c_void>);
}

extern "C-unwind" {
    /// Print the internal state of an object to the supplied FILE*.
    #[cfg(feature = "libc")]
    pub fn CAShowFile(in_object: NonNull<c_void>, in_file: NonNull<libc::FILE>);
}