pub unsafe extern "C-unwind" fn AuthorizationFreeItemSet(
set: NonNull<AuthorizationItemSet>,
) -> i32
Available on crate feature
Authorization
only.Expand description
Release the memory allocated for an AuthorizationItemSet that was allocated by an API call.
Parameter set
: The AuthorizationItemSet to deallocate.
Returns: errAuthorizationSuccess 0 No error.
errAuthorizationInvalidSet -60001 The set parameter is invalid.
ยงSafety
set
must be a valid pointer.