| 85 struct gaim_plugin *p; |
85 struct gaim_plugin *p; |
| 86 void (*gaim_plugin_remove)(); |
86 void (*gaim_plugin_remove)(); |
| 87 char *error; |
87 char *error; |
| 88 |
88 |
| 89 /* first we tell those who have requested it we're quitting */ |
89 /* first we tell those who have requested it we're quitting */ |
| 90 plugin_event(event_quit, 0, 0, 0); |
90 plugin_event(event_quit, 0, 0, 0, 0); |
| 91 |
91 |
| 92 /* then we remove everyone in a mass suicide */ |
92 /* then we remove everyone in a mass suicide */ |
| 93 c = plugins; |
93 c = plugins; |
| 94 while (c) { |
94 while (c) { |
| 95 p = (struct gaim_plugin *)c->data; |
95 p = (struct gaim_plugin *)c->data; |