Mercurial > pidgin
annotate src/plugin.h @ 8964:faf9a6e56aec
[gaim-migrate @ 9738]
wrong place before
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 17 May 2004 15:53:05 +0000 |
parents | c61be128dff3 |
children | 8cf32769ba1b |
rev | line source |
---|---|
5205 | 1 /** |
2 * @file plugin.h Plugin API | |
3 * @ingroup core | |
4 * | |
5 * gaim | |
6 * | |
8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
5949
diff
changeset
|
10 * |
5205 | 11 * This program is free software; you can redistribute it and/or modify |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 #ifndef _GAIM_PLUGIN_H_ | |
26 #define _GAIM_PLUGIN_H_ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
27 |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5205
diff
changeset
|
28 #include <gmodule.h> |
6822
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
29 #include "signals.h" |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
30 #include "value.h" |
5205 | 31 |
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
32 typedef struct _GaimPlugin GaimPlugin; |
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
33 typedef struct _GaimPluginInfo GaimPluginInfo; |
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
34 typedef struct _GaimPluginUiInfo GaimPluginUiInfo; |
5205 | 35 typedef struct _GaimPluginLoaderInfo GaimPluginLoaderInfo; |
36 | |
37 typedef int GaimPluginPriority; /**< Plugin priority. */ | |
38 | |
8713 | 39 #include "pluginpref.h" |
40 | |
5205 | 41 /** |
42 * Plugin types. | |
43 */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
44 typedef enum |
5205 | 45 { |
46 GAIM_PLUGIN_UNKNOWN = -1, /**< Unknown type. */ | |
47 GAIM_PLUGIN_STANDARD = 0, /**< Standard plugin. */ | |
48 GAIM_PLUGIN_LOADER, /**< Loader plugin. */ | |
49 GAIM_PLUGIN_PROTOCOL /**< Protocol plugin. */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
50 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
51 } GaimPluginType; |
5205 | 52 |
53 #define GAIM_PRIORITY_DEFAULT 0 | |
54 #define GAIM_PRIORITY_HIGHEST 9999 | |
55 #define GAIM_PRIORITY_LOWEST -9999 | |
56 | |
6928
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6822
diff
changeset
|
57 #define GAIM_PLUGIN_FLAG_INVISIBLE 0x01 |
6ed0a1c045b4
[gaim-migrate @ 7475]
Christian Hammond <chipx86@chipx86.com>
parents:
6822
diff
changeset
|
58 |
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
59 #define GAIM_PLUGIN_API_VERSION 3 |
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
60 #define GAIM_LOADER_API_VERSION 2 |
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
61 |
5205 | 62 /** |
63 * Detailed information about a plugin. | |
64 * | |
65 * This is used in the version 2.0 API and up. | |
66 */ | |
67 struct _GaimPluginInfo | |
68 { | |
69 unsigned int api_version; | |
70 GaimPluginType type; | |
71 char *ui_requirement; | |
72 unsigned long flags; | |
73 GList *dependencies; | |
74 GaimPluginPriority priority; | |
75 | |
76 char *id; | |
77 char *name; | |
78 char *version; | |
79 char *summary; | |
80 char *description; | |
81 char *author; | |
82 char *homepage; | |
83 | |
84 gboolean (*load)(GaimPlugin *plugin); | |
85 gboolean (*unload)(GaimPlugin *plugin); | |
86 void (*destroy)(GaimPlugin *plugin); | |
87 | |
88 void *ui_info; | |
89 void *extra_info; | |
8814 | 90 GaimPluginUiInfo *prefs_info; |
5205 | 91 }; |
92 | |
93 /** | |
94 * Extra information for loader plugins. | |
95 */ | |
96 struct _GaimPluginLoaderInfo | |
97 { | |
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
98 unsigned int api_version; |
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
99 |
5205 | 100 GList *exts; |
101 | |
102 gboolean (*probe)(GaimPlugin *plugin); | |
103 gboolean (*load)(GaimPlugin *plugin); | |
104 gboolean (*unload)(GaimPlugin *plugin); | |
105 void (*destroy)(GaimPlugin *plugin); | |
106 }; | |
107 | |
108 /** | |
109 * A plugin handle. | |
110 */ | |
111 struct _GaimPlugin | |
112 { | |
113 gboolean native_plugin; /**< Native C plugin. */ | |
114 gboolean loaded; /**< The loaded state. */ | |
115 void *handle; /**< The module handle. */ | |
116 char *path; /**< The path to the plugin. */ | |
117 GaimPluginInfo *info; /**< The plugin information. */ | |
118 char *error; | |
6822
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
119 void *ipc_data; /**< IPC data. */ |
5205 | 120 void *extra; /**< Plugin-specific data. */ |
121 }; | |
122 | |
123 #define GAIM_PLUGIN_LOADER_INFO(plugin) \ | |
124 ((GaimPluginLoaderInfo *)(plugin)->info->extra_info) | |
125 | |
8713 | 126 struct _GaimPluginUiInfo { |
127 GaimPluginPrefFrame *(*get_plugin_pref_frame)(GaimPlugin *plugin); | |
128 | |
129 void *iter; /**< Reserved */ | |
8814 | 130 GaimPluginPrefFrame *frame; /**< Reserved */ |
8713 | 131 }; |
132 | |
133 #define GAIM_PLUGIN_HAS_PREF_FRAME(plugin) \ | |
134 ((plugin)->info != NULL && (plugin)->info->prefs_info != NULL) | |
135 | |
136 #define GAIM_PLUGIN_UI_INFO(plugin) \ | |
137 ((GaimPluginUiInfo*)(plugin)->info->prefs_info) | |
138 | |
5205 | 139 /** |
140 * Handles the initialization of modules. | |
141 */ | |
8082 | 142 #if !defined(GAIM_PLUGINS) || defined(GAIM_STATIC_PRPL) |
5205 | 143 # define GAIM_INIT_PLUGIN(pluginname, initfunc, plugininfo) \ |
144 gboolean gaim_init_##pluginname##_plugin(void) { \ | |
145 GaimPlugin *plugin = gaim_plugin_new(TRUE, NULL); \ | |
146 plugin->info = &(plugininfo); \ | |
147 initfunc((plugin)); \ | |
148 return gaim_plugin_register(plugin); \ | |
149 } | |
8082 | 150 #else /* GAIM_PLUGINS && !GAIM_STATIC_PRPL */ |
5205 | 151 # define GAIM_INIT_PLUGIN(pluginname, initfunc, plugininfo) \ |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5205
diff
changeset
|
152 G_MODULE_EXPORT gboolean gaim_init_plugin(GaimPlugin *plugin) { \ |
5205 | 153 plugin->info = &(plugininfo); \ |
154 initfunc((plugin)); \ | |
155 return gaim_plugin_register(plugin); \ | |
156 } | |
157 #endif | |
158 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
159 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
160 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
161 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
162 |
5205 | 163 /**************************************************************************/ |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
164 /** @name Plugin API */ |
5205 | 165 /**************************************************************************/ |
166 /*@{*/ | |
167 | |
168 /** | |
169 * Creates a new plugin structure. | |
170 * | |
171 * @param native Whether or not the plugin is native. | |
172 * @param path The path to the plugin, or @c NULL if statically compiled. | |
173 * | |
174 * @return A new GaimPlugin structure. | |
175 */ | |
176 GaimPlugin *gaim_plugin_new(gboolean native, const char *path); | |
177 | |
178 /** | |
179 * Probes a plugin, retrieving the information on it and adding it to the | |
180 * list of available plugins. | |
181 * | |
182 * @param filename The plugin's filename. | |
183 * | |
184 * @return The plugin handle. | |
185 * | |
186 * @see gaim_plugin_load() | |
187 * @see gaim_plugin_destroy() | |
188 */ | |
189 GaimPlugin *gaim_plugin_probe(const char *filename); | |
190 | |
191 /** | |
192 * Registers a plugin and prepares it for loading. | |
193 * | |
194 * This shouldn't be called by anything but the internal module code. | |
195 * | |
196 * @param plugin The plugin to register. | |
197 */ | |
198 gboolean gaim_plugin_register(GaimPlugin *plugin); | |
199 | |
200 /** | |
201 * Attempts to load a previously probed plugin. | |
202 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6486
diff
changeset
|
203 * @param plugin The plugin to load. |
5205 | 204 * |
205 * @return @c TRUE if successful, or @c FALSE otherwise. | |
206 * | |
207 * @see gaim_plugin_reload() | |
208 * @see gaim_plugin_unload() | |
209 */ | |
210 gboolean gaim_plugin_load(GaimPlugin *plugin); | |
211 | |
212 /** | |
213 * Unloads the specified plugin. | |
214 * | |
215 * @param plugin The plugin handle. | |
216 * | |
217 * @return @c TRUE if successful, or @c FALSE otherwise. | |
218 * | |
219 * @see gaim_plugin_load() | |
220 * @see gaim_plugin_reload() | |
221 */ | |
222 gboolean gaim_plugin_unload(GaimPlugin *plugin); | |
223 | |
224 /** | |
225 * Reloads a plugin. | |
226 * | |
227 * @param plugin The old plugin handle. | |
6486
fab81e4b885c
[gaim-migrate @ 7000]
Christian Hammond <chipx86@chipx86.com>
parents:
6485
diff
changeset
|
228 * |
5205 | 229 * @return @c TRUE if successful, or @c FALSE otherwise. |
230 * | |
231 * @see gaim_plugin_load() | |
232 * @see gaim_plugin_unload() | |
233 */ | |
234 gboolean gaim_plugin_reload(GaimPlugin *plugin); | |
235 | |
236 /** | |
237 * Unloads a plugin and destroys the structure from memory. | |
238 * | |
239 * @param plugin The plugin handle. | |
240 */ | |
241 void gaim_plugin_destroy(GaimPlugin *plugin); | |
242 | |
243 /** | |
244 * Returns whether or not a plugin is currently loaded. | |
245 * | |
246 * @param plugin The plugin. | |
247 * | |
248 * @return TRUE if loaded, or FALSE otherwise. | |
249 */ | |
250 gboolean gaim_plugin_is_loaded(const GaimPlugin *plugin); | |
251 | |
252 /*@}*/ | |
253 | |
254 /**************************************************************************/ | |
6822
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
255 /** @name Plugin IPC API */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
256 /**************************************************************************/ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
257 /*@{*/ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
258 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
259 /** |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
260 * Registers an IPC command in a plugin. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
261 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
262 * @param plugin The plugin to register the command with. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
263 * @param command The name of the command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
264 * @param func The function to execute. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
265 * @param marshal The marshalling function. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
266 * @param ret_value The return value type. |
7114
c47633e9e2a4
[gaim-migrate @ 7681]
Christian Hammond <chipx86@chipx86.com>
parents:
7034
diff
changeset
|
267 * @param num_params The number of parameters. |
6822
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
268 * @param ... The parameter types. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
269 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
270 * @return TRUE if the function was registered successfully, or |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
271 * FALSE otherwise. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
272 */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
273 gboolean gaim_plugin_ipc_register(GaimPlugin *plugin, const char *command, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
274 GaimCallback func, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
275 GaimSignalMarshalFunc marshal, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
276 GaimValue *ret_value, int num_params, ...); |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
277 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
278 /** |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
279 * Unregisters an IPC command in a plugin. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
280 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
281 * @param plugin The plugin to unregister the command from. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
282 * @param command The name of the command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
283 */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
284 void gaim_plugin_ipc_unregister(GaimPlugin *plugin, const char *command); |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
285 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
286 /** |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
287 * Unregisters all IPC commands in a plugin. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
288 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
289 * @param plugin The plugin to unregister the commands from. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
290 */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
291 void gaim_plugin_ipc_unregister_all(GaimPlugin *plugin); |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
292 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
293 /** |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
294 * Returns a list of value types used for an IPC command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
295 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
296 * @param plugin The plugin. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
297 * @param command The name of the command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
298 * @param ret_value The returned return value. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
299 * @param num_params The returned number of parameters. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
300 * @param params The returned list of parameters. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
301 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
302 * @return TRUE if the command was found, or FALSE otherwise. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
303 */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
304 gboolean gaim_plugin_ipc_get_params(GaimPlugin *plugin, const char *command, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
305 GaimValue **ret_value, int *num_params, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
306 GaimValue ***params); |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
307 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
308 /** |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
309 * Executes an IPC command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
310 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
311 * @param plugin The plugin to execute the command on. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
312 * @param command The name of the command. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
313 * @param ok TRUE if the call was successful, or FALSE otherwise. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
314 * @param ... The parameters to pass. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
315 * |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
316 * @return The return value, which will be NULL if the command doesn't |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
317 * return a value. |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
318 */ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
319 void *gaim_plugin_ipc_call(GaimPlugin *plugin, const char *command, |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
320 gboolean *ok, ...); |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
321 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
322 /*@}*/ |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
323 |
7dba3e17cb21
[gaim-migrate @ 7366]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
324 /**************************************************************************/ |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
325 /** @name Plugins API */ |
5205 | 326 /**************************************************************************/ |
327 /*@{*/ | |
328 | |
329 /** | |
330 * Sets the search paths for plugins. | |
331 * | |
332 * @param count The number of search paths. | |
333 * @param paths The search paths. | |
334 */ | |
335 void gaim_plugins_set_search_paths(size_t count, char **paths); | |
336 | |
337 /** | |
5242
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
338 * Unloads all loaded plugins. |
5205 | 339 */ |
340 void gaim_plugins_unload_all(void); | |
341 | |
5242
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
342 /** |
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
343 * Destroys all registered plugins. |
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
344 */ |
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
345 void gaim_plugins_destroy_all(void); |
fd81a00480ac
[gaim-migrate @ 5613]
Christian Hammond <chipx86@chipx86.com>
parents:
5224
diff
changeset
|
346 |
5205 | 347 /** |
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
348 * Attempts to load all the plugins in the specified preference key |
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
349 * that were loaded when gaim last quit. |
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
350 * |
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
351 * @param key The preference key containing the list of plugins. |
5838 | 352 */ |
5949
90d0849abd3c
[gaim-migrate @ 6393]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
353 void gaim_plugins_load_saved(const char *key); |
5838 | 354 |
355 /** | |
5205 | 356 * Probes for plugins in the registered module paths. |
357 * | |
358 * @param ext The extension type to probe for, or @c NULL for all. | |
359 * | |
360 * @see gaim_plugin_set_probe_path() | |
361 */ | |
362 void gaim_plugins_probe(const char *ext); | |
363 | |
364 /** | |
365 * Returns whether or not plugin support is enabled. | |
366 * | |
367 * @return TRUE if plugin support is enabled, or FALSE otherwise. | |
368 */ | |
369 gboolean gaim_plugins_enabled(void); | |
370 | |
371 /** | |
372 * Registers a function that will be called when probing is finished. | |
373 * | |
374 * @param func The callback function. | |
375 * @param data Data to pass to the callback. | |
376 */ | |
377 void gaim_plugins_register_probe_notify_cb(void (*func)(void *), void *data); | |
378 | |
379 /** | |
380 * Unregisters a function that would be called when probing is finished. | |
381 * | |
382 * @param func The callback function. | |
383 */ | |
384 void gaim_plugins_unregister_probe_notify_cb(void (*func)(void *)); | |
385 | |
386 /** | |
387 * Registers a function that will be called when a plugin is loaded. | |
388 * | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
389 * @param func The callback function. |
5205 | 390 * @param data Data to pass to the callback. |
391 */ | |
392 void gaim_plugins_register_load_notify_cb(void (*func)(GaimPlugin *, void *), | |
393 void *data); | |
394 | |
395 /** | |
396 * Unregisters a function that would be called when a plugin is loaded. | |
397 * | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
398 * @param func The callback function. |
5205 | 399 */ |
400 void gaim_plugins_unregister_load_notify_cb(void (*func)(GaimPlugin *, void *)); | |
401 | |
402 /** | |
403 * Registers a function that will be called when a plugin is unloaded. | |
404 * | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
405 * @param func The callback function. |
5205 | 406 * @param data Data to pass to the callback. |
407 */ | |
408 void gaim_plugins_register_unload_notify_cb(void (*func)(GaimPlugin *, void *), | |
409 void *data); | |
410 | |
411 /** | |
412 * Unregisters a function that would be called when a plugin is unloaded. | |
413 * | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8713
diff
changeset
|
414 * @param func The callback function. |
5205 | 415 */ |
416 void gaim_plugins_unregister_unload_notify_cb(void (*func)(GaimPlugin *, | |
417 void *)); | |
418 | |
419 /** | |
420 * Finds a plugin with the specified name. | |
421 * | |
422 * @param name The plugin name. | |
423 * | |
424 * @return The plugin if found, or @c NULL if not found. | |
425 */ | |
426 GaimPlugin *gaim_plugins_find_with_name(const char *name); | |
427 | |
428 /** | |
7034
f7ff0dfa6b9f
[gaim-migrate @ 7597]
Christian Hammond <chipx86@chipx86.com>
parents:
7033
diff
changeset
|
429 * Finds a plugin with the specified filename (filename with a path). |
5205 | 430 * |
431 * @param filename The plugin filename. | |
432 * | |
433 * @return The plugin if found, or @c NULL if not found. | |
434 */ | |
435 GaimPlugin *gaim_plugins_find_with_filename(const char *filename); | |
436 | |
437 /** | |
7034
f7ff0dfa6b9f
[gaim-migrate @ 7597]
Christian Hammond <chipx86@chipx86.com>
parents:
7033
diff
changeset
|
438 * Finds a plugin with the specified basename (filename without a path). |
7033
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
439 * |
7034
f7ff0dfa6b9f
[gaim-migrate @ 7597]
Christian Hammond <chipx86@chipx86.com>
parents:
7033
diff
changeset
|
440 * @param basename The plugin basename. |
7033
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
441 * |
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
442 * @return The plugin if found, or @c NULL if not found. |
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
443 */ |
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
444 GaimPlugin *gaim_plugins_find_with_basename(const char *basename); |
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
445 |
cf1126ba1834
[gaim-migrate @ 7596]
Christian Hammond <chipx86@chipx86.com>
parents:
6928
diff
changeset
|
446 /** |
5205 | 447 * Finds a plugin with the specified plugin ID. |
448 * | |
449 * @param id The plugin ID. | |
450 * | |
451 * @return The plugin if found, or @c NULL if not found. | |
452 */ | |
453 GaimPlugin *gaim_plugins_find_with_id(const char *id); | |
454 | |
455 /** | |
456 * Returns a list of all loaded plugins. | |
457 * | |
5573
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
458 * @return A list of all loaded plugins. |
5205 | 459 */ |
460 GList *gaim_plugins_get_loaded(void); | |
461 | |
462 /** | |
5573
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
463 * Returns a list of all protocol plugins. |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
464 * |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
465 * @return A list of all protocol plugins. |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
466 */ |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
467 GList *gaim_plugins_get_protocols(void); |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
468 |
5e7de337a053
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5449
diff
changeset
|
469 /** |
5205 | 470 * Returns a list of all plugins, whether loaded or not. |
471 * | |
472 * @return A list of all plugins. | |
473 */ | |
474 GList *gaim_plugins_get_all(void); | |
475 | |
476 /*@}*/ | |
477 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
478 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
479 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
480 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5840
diff
changeset
|
481 |
5205 | 482 #endif /* _GAIM_PLUGIN_H_ */ |