Displaying 1 result from an estimated 1 matches for "finiscreen".
2007 Mar 07
4
Plugin Library Interface
...yFunction (CompDisplay *d, char* name);
void updateLibraryFunction(CompDisplay *d, CompLibraryFunction *func);
You can register a function through addLibraryFunction and remove it
with removeLibraryFunction.
Whenever a function gets added or removed updateLibraryFunction is
called. Like initScreen/finiScreen it's done through a additional
entry in the vTable. It doesn't make sense to make this function
wrap-able, it's just too important and no plugin should be able to
stop or manipulate it.
Plugins which need a shared function can get it through
getLibraryFunction, most likely you will cal...