Home | History | Annotate | Download | only in gmodule

Lines Matching refs:module

1 /* GMODULE - GLIB wrapper code for dynamic module loading
52 typedef const gchar* (*GModuleCheckInit) (GModule *module);
53 typedef void (*GModuleUnload) (GModule *module);
60 /* return TRUE if dynamic module loading is supported */
63 /* open a module `file_name' and return handle, which is NULL on error */
67 /* close a previously opened module, returns TRUE on success */
68 gboolean g_module_close (GModule *module);
70 /* make a module resident so g_module_close on it will be ignored */
71 void g_module_make_resident (GModule *module);
73 /* query the last module error as a string */
76 /* retrieve a symbol pointer from `module', returns TRUE on success */
77 gboolean g_module_symbol (GModule *module,
81 /* retrieve the file name from an existing module */
82 G_CONST_RETURN gchar* g_module_name (GModule *module);
84 /* Build the actual file name containing a module. `directory' is the
85 * directory where the module file is supposed to be, or NULL or empty
88 * PATH. Hence, to be absoultely sure to get the correct module,