pub unsafe extern "C-unwind" fn AudioComponentGetVersion(
in_component: AudioComponent,
out_version: NonNull<u32>,
) -> i32Available on crate feature
AudioComponent only.Expand description
Retrieve an audio component’s version.
Parameter inComponent: the audio component (must not be NULL)
Parameter outVersion: the audio component’s version in the form of 0xMMMMmmDD (Major, Minor, Dot)
Returns: an OSStatus result code.
§Safety
in_componentmust be a valid pointer.out_versionmust be a valid pointer.