CFPlugInRegisterFactoryFunctionByName(_:_:_:)
Registers a factory function with a CFPlugIn object using the function’s name instead of its UUID.
Declaration
func CFPlugInRegisterFactoryFunctionByName(_ factoryUUID: CFUUID!, _ plugIn: CFPlugIn!, _ functionName: CFString!) -> BoolParameters
- factoryUUID:
The
CFUUIDobject representing the factory function to register. - plugIn:
The plug-in containing
functionName. - functionName:
The name of the factory function 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.