comparison src/plugin.h @ 11772:d1d5f27de95d

[gaim-migrate @ 14063] Added a bunch of accessor functions for the PluginInfo struct off of the plugin... committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sun, 23 Oct 2005 23:26:14 +0000
parents 56915e1b3ba3
children 1bb0efbd4394
comparison
equal deleted inserted replaced
11771:08b1dd8aa11c 11772:d1d5f27de95d
298 * 298 *
299 * @return TRUE if loaded, or FALSE otherwise. 299 * @return TRUE if loaded, or FALSE otherwise.
300 */ 300 */
301 gboolean gaim_plugin_is_loaded(const GaimPlugin *plugin); 301 gboolean gaim_plugin_is_loaded(const GaimPlugin *plugin);
302 302
303 /**
304 * Returns a plugin's id.
305 *
306 * @param plugin The plugin.
307 *
308 * @return The plugin's id.
309 */
310 const gchar *gaim_plugin_get_id(const GaimPlugin *plugin);
311
312 /**
313 * Returns a plugin's name.
314 *
315 * @param plugin The plugin.
316 *
317 * @return THe name of the plugin, or @c NULL.
318 */
319 const gchar *gaim_plugin_get_name(const GaimPlugin *plugin);
320
321 /**
322 * Returns a plugin's version.
323 *
324 * @param plugin The plugin.
325 *
326 * @return The plugin's version or @c NULL.
327 */
328 const gchar *gaim_plugin_get_version(const GaimPlugin *plugin);
329
330 /**
331 * Returns a plugin's summary.
332 *
333 * @param plugin The plugin.
334 *
335 * @return The plugin's summary.
336 */
337 const gchar *gaim_plugin_get_summary(const GaimPlugin *plugin);
338
339 /**
340 * Returns a plugin's description.
341 *
342 * @param plugin The plugin.
343 *
344 * @return The plugin's description.
345 */
346 const gchar *gaim_plugin_get_description(const GaimPlugin *plugin);
347
348 /**
349 * Returns a plugin's author.
350 *
351 * @param plugin The plugin.
352 *
353 * @return The plugin's author.
354 */
355 const gchar *gaim_plugin_get_author(const GaimPlugin *plugin);
356
357 /**
358 * Returns a plugin's homepage.
359 *
360 * @param plugin The plugin.
361 *
362 * @return The plugin's homepage.
363 */
364 const gchar *gaim_plugin_get_homepage(const GaimPlugin *plugin);
365
303 /*@}*/ 366 /*@}*/
304 367
305 /**************************************************************************/ 368 /**************************************************************************/
306 /** @name Plugin IPC API */ 369 /** @name Plugin IPC API */
307 /**************************************************************************/ 370 /**************************************************************************/