mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
s/retrive/retrieve/
2001-10-03 jacob berkman <jacob@ximian.com> * libgplugin_a.c: (gplugin_a_module_func): * gmodule.h: s/retrive/retrieve/
This commit is contained in:
parent
d761fb4b3b
commit
484614634c
@ -1,3 +1,8 @@
|
|||||||
|
2001-10-03 jacob berkman <jacob@ximian.com>
|
||||||
|
|
||||||
|
* libgplugin_a.c: (gplugin_a_module_func):
|
||||||
|
* gmodule.h: s/retrive/retrieve/
|
||||||
|
|
||||||
2001-09-25 Tor Lillqvist <tml@iki.fi>
|
2001-09-25 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* makefile.mingw.in: Fix missing end @ in @LT_CURRENT@.
|
* makefile.mingw.in: Fix missing end @ in @LT_CURRENT@.
|
||||||
|
@ -67,12 +67,12 @@ void g_module_make_resident (GModule *module);
|
|||||||
/* query the last module error as a string */
|
/* query the last module error as a string */
|
||||||
G_CONST_RETURN gchar* g_module_error (void);
|
G_CONST_RETURN gchar* g_module_error (void);
|
||||||
|
|
||||||
/* retrive a symbol pointer from `module', returns TRUE on success */
|
/* retrieve a symbol pointer from `module', returns TRUE on success */
|
||||||
gboolean g_module_symbol (GModule *module,
|
gboolean g_module_symbol (GModule *module,
|
||||||
const gchar *symbol_name,
|
const gchar *symbol_name,
|
||||||
gpointer *symbol);
|
gpointer *symbol);
|
||||||
|
|
||||||
/* retrive the file name from an existing module */
|
/* retrieve the file name from an existing module */
|
||||||
G_CONST_RETURN gchar* g_module_name (GModule *module);
|
G_CONST_RETURN gchar* g_module_name (GModule *module);
|
||||||
|
|
||||||
/* Build the actual file name containing a module. `directory' is the
|
/* Build the actual file name containing a module. `directory' is the
|
||||||
|
@ -59,7 +59,7 @@ gplugin_a_module_func (GModule *module)
|
|||||||
gchar *basename = g_path_get_basename (g_module_name (module));
|
gchar *basename = g_path_get_basename (g_module_name (module));
|
||||||
|
|
||||||
string = "gplugin_say_boo_func";
|
string = "gplugin_say_boo_func";
|
||||||
g_print ("GPluginA: retrive symbol `%s' from \"%s\"\n",
|
g_print ("GPluginA: retrieve symbol `%s' from \"%s\"\n",
|
||||||
string, basename);
|
string, basename);
|
||||||
g_free (basename);
|
g_free (basename);
|
||||||
if (!g_module_symbol (module, string, (gpointer) &f))
|
if (!g_module_symbol (module, string, (gpointer) &f))
|
||||||
|
Loading…
Reference in New Issue
Block a user