Name

e_plugin_invoke —

Synopsis

void * e_plugin_invoke (ep,  
 name,  
 data); 
EPlugin *  ep;
const char *  name;
void *  data;

Arguments

ep

name

The name of the function to invoke. The format of this name will depend on the EPlugin type and its language conventions.

data

The argument to the function. Its actual type depends on the hook on which the function resides. It is up to the called function to get this right.

Description

Helper to invoke the invoke virtual method.

Return value

The return of the plugin invocation.