PangoIncludedModule

PangoIncludedModule: @list: a function that lists the engines defined in this module. @init: a function to initialize the module. @exit: a function to finalize the module. @create: a function to create an engine, given the engine name.

The #PangoIncludedModule structure for a statically linked module contains the functions that would otherwise be loaded from a dynamically loaded module.

version(Backend)extern (C)
struct PangoIncludedModule {
void function(PangoEngineInfo** engines, int* n_engines) list;
void function(GTypeModule* mod) init;
void function() exit;
PangoEngine* function(const char* id) create;
}

Meta