comparison libpurple/plugin.h @ 20891:59c9c04879af

Replace a bunch of @return markers with @constreturn markers. I believe these are all correct.
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 17 Oct 2007 03:36:54 +0000
parents f296be2a1039
children 6de09629f091
comparison
equal deleted inserted replaced
20890:086b6e3e5015 20891:59c9c04879af
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