SecTransformFindByName

Function SecTransformFindByName 

Source
pub unsafe extern "C-unwind" fn SecTransformFindByName(
    transform: &SecGroupTransform,
    name: &CFString,
) -> Option<CFRetained<SecTransform>>
๐Ÿ‘ŽDeprecated: SecTransform is no longer supported
Available on crate feature SecTransform only.
Expand description

Finds a member of a transform group by its name.

Parameter transform: The transform group to be searched.

Parameter name: The name of the transform to be found.

When a transform instance is created it will be given a unique name. This name can be used to find that instance in a group. While it is possible to change this unique name using the SecTransformSetAttribute API, developers should not do so. This allows SecTransformFindTransformByName to work correctly.

Returns: The transform group member, or NULL if the member was not found.

ยงSafety

transform should be of the correct type.