| 606 * @return A list of all accounts. |
606 * @return A list of all accounts. |
| 607 */ |
607 */ |
| 608 GList *gaim_accounts_get_all(void); |
608 GList *gaim_accounts_get_all(void); |
| 609 |
609 |
| 610 /** |
610 /** |
| 611 * Finds an account with the specified name and protocol number. |
611 * Finds an account with the specified name and protocol id. |
| 612 * |
612 * |
| 613 * @param name The account username. |
613 * @param name The account username. |
| 614 * @param protocol The account protocol ID or number. |
614 * @param protocol The account protocol ID. |
| 615 * |
615 * |
| 616 * @return The account, if found, or @c FALSE otherwise. |
616 * @return The account, if found, or @c FALSE otherwise. |
| 617 */ |
617 */ |
| 618 GaimAccount *gaim_accounts_find(const char *name, const char *protocol); |
618 GaimAccount *gaim_accounts_find(const char *name, const char *protocol); |
| 619 |
619 |