pub unsafe extern "C-unwind" fn AudioFileStreamSetProperty(
in_audio_file_stream: AudioFileStreamID,
in_property_id: AudioFileStreamPropertyID,
in_property_data_size: u32,
in_property_data: NonNull<c_void>,
) -> i32Available on crate feature
AudioFileStream only.Expand description
Set the value of the property. There are currently no settable properties.
Parameter inAudioFileStream: The file stream ID
Parameter inPropertyID: Property ID whose value should be set
Parameter inPropertyDataSize: Size in bytes of the property data
Parameter inPropertyData: Pointer to the property data buffer
Returns: an OSStatus return code
ยงSafety
in_audio_file_streammust be a valid pointer.in_property_datamust be a valid pointer.