comparison src/plugin.c @ 11963:d8787960e398

[gaim-migrate @ 14254] Documentation committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 04 Nov 2005 01:29:58 +0000
parents 2b9ca8861ca5
children ee8312c764b1
comparison
equal deleted inserted replaced
11962:b634605fa7ca 11963:d8787960e398
55 #ifdef GAIM_PLUGINS 55 #ifdef GAIM_PLUGINS
56 static GList *load_queue = NULL; 56 static GList *load_queue = NULL;
57 static GList *plugin_loaders = NULL; 57 static GList *plugin_loaders = NULL;
58 #endif 58 #endif
59 59
60 /*
61 * TODO: I think the intention was to allow multiple load and unload
62 * callback functions. Perhaps using a GList instead of a
63 * pointer to a single function.
64 */
60 static void (*probe_cb)(void *) = NULL; 65 static void (*probe_cb)(void *) = NULL;
61 static void *probe_cb_data = NULL; 66 static void *probe_cb_data = NULL;
62 static void (*load_cb)(GaimPlugin *, void *) = NULL; 67 static void (*load_cb)(GaimPlugin *, void *) = NULL;
63 static void *load_cb_data = NULL; 68 static void *load_cb_data = NULL;
64 static void (*unload_cb)(GaimPlugin *, void *) = NULL; 69 static void (*unload_cb)(GaimPlugin *, void *) = NULL;