Mercurial > pidgin
comparison src/plugin.h @ 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 |
|---|---|
| 95 char *summary; | 95 char *summary; |
| 96 char *description; | 96 char *description; |
| 97 char *author; | 97 char *author; |
| 98 char *homepage; | 98 char *homepage; |
| 99 | 99 |
| 100 /* | 100 /** |
| 101 * TODO: I think the intention was the allow multiple load and unload | 101 * If a plugin defines a 'load' function, and it returns FALSE, |
| 102 * callback functions. Perhaps using a GList instead of a pointer to | 102 * then the plugin will not be loaded. |
| 103 * 1 function. | |
| 104 */ | 103 */ |
| 105 gboolean (*load)(GaimPlugin *plugin); | 104 gboolean (*load)(GaimPlugin *plugin); |
| 106 gboolean (*unload)(GaimPlugin *plugin); | 105 gboolean (*unload)(GaimPlugin *plugin); |
| 107 void (*destroy)(GaimPlugin *plugin); | 106 void (*destroy)(GaimPlugin *plugin); |
| 108 | 107 |
