objc2-audio-toolbox 0.3.2

Bindings to the AudioToolbox framework
Documentation
//! 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.
    ///
    /// # Safety
    ///
    /// `in_object` must be a valid pointer.
    pub fn CAShow(in_object: NonNull<c_void>);
}

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