pub unsafe extern "C-unwind" fn AudioObjectGetPropertyDataSize(
in_object_id: AudioObjectID,
in_address: NonNull<AudioObjectPropertyAddress>,
in_qualifier_data_size: u32,
in_qualifier_data: *const c_void,
out_data_size: NonNull<u32>,
) -> i32AudioHardware only.Expand description
Queries an AudioObject to find the size of the data for the given property.
Parameter inObjectID: The AudioObject to query.
Parameter inAddress: An AudioObjectPropertyAddress indicating which property is being queried.
Parameter inQualifierDataSize: A UInt32 indicating the size of the buffer pointed to by inQualifierData.
Note that not all properties require qualification, in which case this
value will be 0.
Parameter inQualifierData: A buffer of data to be used in determining the data of the property being
queried. Note that not all properties require qualification, in which case
this value will be NULL.
Parameter outDataSize: A UInt32 indicating how many bytes the data for the given property occupies.
Returns: An OSStatus indicating success or failure.
ยงSafety
in_addressmust be a valid pointer.in_qualifier_datamust be a valid pointer or null.out_data_sizemust be a valid pointer.