pub unsafe extern "C-unwind" fn AudioDeviceDestroyIOProcID(
in_device: AudioObjectID,
in_io_proc_id: AudioDeviceIOProcID,
) -> i32Available on crate features
AudioHardware and objc2-core-audio-types only.Expand description
Destroys an AudioDeviceIOProcID.
AudioDeviceIOProcIDs allow for the client to register the same function pointer with a device multiple times
Parameter inDevice: The AudioDevice from which the ID came.
Parameter inIOProcID: The AudioDeviceIOProcID to get rid of.
Returns: An OSStatus indicating success or failure.
ยงSafety
in_io_proc_id must be implemented correctly.