pub type FREContextInitializer = unsafe extern "C" fn(extData: FREData, ctxType: FREStr, ctx: FREContext, numFunctionsToSet: *mut u32, functionsToSet: *mut *const FRENamedFunction);Expand description
Defines the signature for the initializer that is called each time a new AS3 ExtensionContext object is created.
ยงParameters
extData: The extension client data provided to theFREInitializerfunction asextDataToSet.ctxType: Pointer to the contextType string (UTF8) as provided to the AS3ExtensionContext.createExtensionContextcall.ctx: TheFREContextbeing initialized.numFunctionsToSet: The number of elements in thefunctionsToSetarray.functionsToSet: A pointer to an array ofFRENamedFunctionelements.