comparison libpurple/plugin.h @ 20976:216fdae447a9

merge of 'e33c17e58da161b8cffaf13e9d79e9bb4b9ce4ce' and 'e9c14932998e8737c0abb9815f8792ca8219759b'
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 17 Oct 2007 03:37:12 +0000
parents 59c9c04879af
children 6de09629f091
comparison
equal deleted inserted replaced
20972:6b9c49ae774c 20976:216fdae447a9
610 PurplePlugin *purple_plugins_find_with_id(const char *id); 610 PurplePlugin *purple_plugins_find_with_id(const char *id);
611 611
612 /** 612 /**
613 * Returns a list of all loaded plugins. 613 * Returns a list of all loaded plugins.
614 * 614 *
615 * @return A list of all loaded plugins. 615 * @constreturn A list of all loaded plugins.
616 */ 616 */
617 GList *purple_plugins_get_loaded(void); 617 GList *purple_plugins_get_loaded(void);
618 618
619 /** 619 /**
620 * Returns a list of all valid protocol plugins. A protocol 620 * Returns a list of all valid protocol plugins. A protocol
621 * plugin is considered invalid if it does not contain the call 621 * plugin is considered invalid if it does not contain the call
622 * to the PURPLE_INIT_PLUGIN() macro, or if it was compiled 622 * to the PURPLE_INIT_PLUGIN() macro, or if it was compiled
623 * against an incompatable API version. 623 * against an incompatable API version.
624 * 624 *
625 * @return A list of all protocol plugins. 625 * @constreturn A list of all protocol plugins.
626 */ 626 */
627 GList *purple_plugins_get_protocols(void); 627 GList *purple_plugins_get_protocols(void);
628 628
629 /** 629 /**
630 * Returns a list of all plugins, whether loaded or not. 630 * Returns a list of all plugins, whether loaded or not.
631 * 631 *
632 * @return A list of all plugins. 632 * @constreturn A list of all plugins.
633 */ 633 */
634 GList *purple_plugins_get_all(void); 634 GList *purple_plugins_get_all(void);
635 635
636 /*@}*/ 636 /*@}*/
637 637