Tue, 07 Feb 2006 16:02:25 +0000
[gaim-migrate @ 15522]
Fix the filename unescaping.
| 11414 | 1 | /** |
| 2 | * @file buddylist.h | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 6 | * Copyright (C) 2005 Bartosz Oler <bartosz@bzimage.us> | |
| 7 | * | |
| 8 | * This program is free software; you can redistribute it and/or modify | |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | */ | |
| 22 | ||
| 23 | ||
| 24 | #ifndef _GAIM_GG_BUDDYLIST_H | |
| 25 | #define _GAIM_GG_BUDDYLIST_H | |
| 26 | ||
| 27 | #include "connection.h" | |
| 28 | #include "account.h" | |
| 29 | ||
| 30 | void | |
| 31 | ggp_buddylist_send(GaimConnection *gc); | |
| 32 | ||
| 33 | /** | |
| 34 | * Load buddylist from server into the rooster. | |
| 35 | * | |
| 36 | * @param gc GaimConnection | |
| 37 | * @param buddylist Pointer to the buddylist that will be loaded. | |
| 38 | */ | |
| 39 | /* void ggp_buddylist_load(GaimConnection *gc, char *buddylist) {{{ */ | |
| 40 | void | |
| 41 | ggp_buddylist_load(GaimConnection *gc, char *buddylist); | |
| 42 | ||
| 43 | /** | |
| 44 | * Set offline status for all buddies. | |
| 45 | * | |
| 46 | * @param gc Connection handler | |
| 47 | */ | |
| 48 | void | |
| 49 | ggp_buddylist_offline(GaimConnection *gc); | |
| 50 | ||
| 51 | /** | |
| 52 | * Get all the buddies in the current account. | |
| 53 | * | |
| 54 | * @param account Current account. | |
| 55 | * | |
| 56 | * @return List of buddies. | |
| 57 | */ | |
| 58 | char * | |
| 59 | ggp_buddylist_dump(GaimAccount *account); | |
| 60 | ||
| 61 | ||
| 62 | #endif /* _GAIM_GG_BUDDYLIST_H */ | |
| 63 | ||
| 12007 | 64 | |
| 65 | /* vim: set ts=8 sts=0 sw=8 noet: */ |