pub unsafe extern "C-unwind" fn AuthorizationCreateFromExternalForm(
ext_form: NonNull<AuthorizationExternalForm>,
authorization: NonNull<AuthorizationRef>,
) -> i32Available on crate feature
Authorization only.Expand description
Internalize the external “byte blob” form of an authorization reference.
Parameter extForm: Pointer to an AuthorizationExternalForm value.
Parameter authorization: Will be filled with a valid AuthorizationRef on success.
Returns: errAuthorizationInternalizeNotAllowed -60010 Internalizing this authorization is not allowed.
§Safety
ext_formmust be a valid pointer.authorizationmust be a valid pointer.