[pour le dévéloppement avec GLib/GTK+, le meilleur endroit est la liste [EMAIL PROTECTED], en anglais]
kamel derouiche wrote: > if (! g_module_symbol(module,"print the > message",(gpointer*) &print_the_message)) http://library.gnome.org/devel/glib/stable/glib-Dynamic-Loading-of-Modules.html#g-module-symb gboolean g_module_symbol( GModule *module, const gchar *symbol_name, gpointer *symbol); module : a GModule. symbol_name : the name of the symbol to find. symbol : returns the pointer to the symbol value. Ton deuxième paramètre, il doit être le nom du symbole, qui n'est pas "print the message" mais "print_the_message". Frédéric _______________________________________________ gnome-fr-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gnome-fr-list
