Home | History | Annotate | Download | only in gio

Lines Matching refs:library

1 /* GIO - GLib Input, Output and Streaming Library
5 * This library is free software; you can redistribute it and/or
10 * This library is distributed in the hope that it will be useful,
16 * Public License along with this library; if not, write to the
56 * functionality of the library or application that loaded it in an
97 GModule *library;
153 module->library = g_module_open (module->filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
155 if (!module->library)
161 /* Make sure that the loaded library contains the required methods */
162 if (! g_module_symbol (module->library,
165 ! g_module_symbol (module->library,
170 g_module_close (module->library);
188 g_module_close (module->library);
189 module->library = NULL;
197 * @filename: filename of the shared library module.
200 * shared library when in use.