Contents

CFPlugInRegisterPlugInType(_:_:)

Registers a type and its corresponding factory function with a CFPlugIn object.

Declaration

func CFPlugInRegisterPlugInType(_ factoryUUID: CFUUID!, _ typeUUID: CFUUID!) -> Bool

Parameters

  • factoryUUID:

    The CFUUID object representing the factory function that can create the type being registered.

  • typeUUID:

    The UUID type to register.

Return Value

true if the factory function was successfully registered, otherwise false.

Discussion

This function is used by a plug-in or host when performing dynamic registration.

See Also

Registration