pub unsafe extern "C-unwind" fn AudioObjectHasProperty(
in_object_id: AudioObjectID,
in_address: NonNull<AudioObjectPropertyAddress>,
) -> boolAvailable on crate feature
AudioHardware only.Expand description
Queries an AudioObject about whether or not it has the given property.
Parameter inObjectID: The AudioObject to query.
Parameter inAddress: An AudioObjectPropertyAddress indicating which property is being queried.
Returns: A Boolean indicating whether or not the AudioObject has the given property.
ยงSafety
in_address must be a valid pointer.