From: Matthias Clasen Date: Sat, 1 Feb 2014 16:08:23 +0000 (-0500) Subject: GModule: Move docs away from markup X-Git-Tag: 2.39.4~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6972264c7daad6688f3a2908c84760892121917d;p=platform%2Fupstream%2Fglib.git GModule: Move docs away from markup --- diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c index 6810787..95c6796 100644 --- a/gmodule/gmodule.c +++ b/gmodule/gmodule.c @@ -79,9 +79,8 @@ * g_quark_from_static_string ("my-module-stuff"), * it must ensure that it is never unloaded, by calling g_module_make_resident(). * - * - * Calling a function defined in a GModule - * + * Example: Calling a function defined in a GModule + * |[ * /* the function signature for 'say_hello' */ * typedef void (* SayHelloFunc) (const char *message); * @@ -95,16 +94,16 @@ * if (!module) * { * g_set_error (error, FOO_ERROR, FOO_ERROR_BLAH, - * "%s", g_module_error ()); + * "%s", g_module_error ()); * return FALSE; * } * - * if (!g_module_symbol (module, "say_hello", (gpointer *)&say_hello)) + * if (!g_module_symbol (module, "say_hello", (gpointer *)&say_hello)) * { * g_set_error (error, SAY_ERROR, SAY_ERROR_OPEN, - * "%s: %s", filename, g_module_error ()); + * "%s: %s", filename, g_module_error ()); * if (!g_module_close (module)) - * g_warning ("%s: %s", filename, g_module_error ()); + * g_warning ("%s: %s", filename, g_module_error ()); * return FALSE; * } * @@ -113,7 +112,7 @@ * g_set_error (error, SAY_ERROR, SAY_ERROR_OPEN, * "symbol say_hello is NULL"); * if (!g_module_close (module)) - * g_warning ("%s: %s", filename, g_module_error ()); + * g_warning ("%s: %s", filename, g_module_error ()); * return FALSE; * } * @@ -121,11 +120,10 @@ * say_hello ("Hello world!"); * * if (!g_module_close (module)) - * g_warning ("%s: %s", filename, g_module_error ()); + * g_warning ("%s: %s", filename, g_module_error ()); * return TRUE; * } - * - * + * ]| */ /** @@ -141,7 +139,6 @@ * @module: the #GModule corresponding to the module which has just been loaded * * Specifies the type of the module initialization function. - * g_module_check_init * If a module contains a function named g_module_check_init() it is called * automatically when the module is loaded. It is passed the #GModule structure * and should return %NULL on success or a string describing the initialization @@ -154,7 +151,6 @@ * GModuleUnload: * @module: the #GModule about to be unloaded * - * g_module_unload * Specifies the type of the module function called when it is unloaded. * If a module contains a function named g_module_unload() it is called * automatically when the module is unloaded.