pub unsafe extern "C-unwind" fn MIDIObjectGetDictionaryProperty(
obj: MIDIObjectRef,
property_id: &CFString,
out_dict: NonNull<*const CFDictionary>,
) -> i32Available on crate features
MIDIServices and objc2-core-foundation only.Expand description
Gets an object’s dictionary-type property.
Parameter obj: The object whose property is to be returned.
Parameter propertyID: Name of the property to return.
Parameter outDict: On successful return, the value of the property.
Returns: An OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
§Safety
out_dict must be a valid pointer.