objc2_audio_toolbox/generated/
CAShow.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ffi::*;
4use core::ptr::NonNull;
5
6use crate::*;
7
8extern "C-unwind" {
9    /// Print the internal state of an object to os_log.
10    ///
11    /// # Safety
12    ///
13    /// `in_object` must be a valid pointer.
14    pub fn CAShow(in_object: NonNull<c_void>);
15}
16
17extern "C-unwind" {
18    /// Print the internal state of an object to the supplied FILE*.
19    ///
20    /// # Safety
21    ///
22    /// - `in_object` must be a valid pointer.
23    /// - `in_file` must be a valid pointer.
24    #[cfg(feature = "libc")]
25    pub fn CAShowFile(in_object: NonNull<c_void>, in_file: NonNull<libc::FILE>);
26}