Mercurial > pidgin
comparison src/plugins.c @ 2140:66a84ff0445a
[gaim-migrate @ 2150]
bmiller's continued coolness
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Thu, 09 Aug 2001 16:53:19 +0000 |
| parents | acc11216ec5d |
| children | eb2cadb18479 |
comparison
equal
deleted
inserted
replaced
| 2139:a14e8459c233 | 2140:66a84ff0445a |
|---|---|
| 981 return 0; | 981 return 0; |
| 982 #endif | 982 #endif |
| 983 } | 983 } |
| 984 | 984 |
| 985 /* Calls the gaim_plugin_remove function in any loaded plugin that has one */ | 985 /* Calls the gaim_plugin_remove function in any loaded plugin that has one */ |
| 986 #ifdef GAIM_PLUGINS | |
| 986 void remove_all_plugins() | 987 void remove_all_plugins() |
| 987 { | 988 { |
| 988 GList *c = plugins; | 989 GList *c = plugins; |
| 989 struct gaim_plugin *p; | 990 struct gaim_plugin *p; |
| 990 void (*gaim_plugin_remove)(); | 991 void (*gaim_plugin_remove)(); |
| 995 (*gaim_plugin_remove)(); | 996 (*gaim_plugin_remove)(); |
| 996 g_free(p); | 997 g_free(p); |
| 997 c = c->next; | 998 c = c->next; |
| 998 } | 999 } |
| 999 } | 1000 } |
| 1001 #endif |
