pub unsafe extern "C-unwind" fn AudioFileComponentSetProperty(
in_component: AudioFileComponent,
in_property_id: AudioFileComponentPropertyID,
in_property_data_size: u32,
in_property_data: NonNull<c_void>,
) -> i32Available on crate feature
AudioComponent only.Expand description
implements AudioFileSetProperty.
Parameter inComponent: an AudioFileComponent
Parameter inPropertyID: an AudioFileProperty constant.
Parameter inPropertyDataSize: the size of the property data.
Parameter inPropertyData: the buffer containing the property data.
Returns: returns noErr if successful.
ยงSafety
in_componentmust be a valid pointer.in_property_datamust be a valid pointer.