pub unsafe extern "C-unwind" fn ExtAudioFileSetProperty(
in_ext_audio_file: ExtAudioFileRef,
in_property_id: ExtAudioFilePropertyID,
in_property_data_size: u32,
in_property_data: NonNull<c_void>,
) -> i32Available on crate feature
ExtendedAudioFile only.Expand description
Set a property value.
Parameter inExtAudioFile: The extended audio file object.
Parameter inPropertyID: The property being set.
Parameter inPropertyDataSize: The size of the property data, in bytes.
Parameter inPropertyData: Points to the property’s new value.
Returns: An OSStatus error code.
§Safety
in_ext_audio_filemust be a valid pointer.in_property_datamust be a valid pointer.