comparison src/blist.h @ 12112:875f59f9c0bb

[gaim-migrate @ 14412] A better interface for iterating the buddy list from none other than Sadrul committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 16 Nov 2005 08:27:17 +0000
parents 980c877bd238
children 255e6912607b
comparison
equal deleted inserted replaced
12111:b528f37d8e95 12112:875f59f9c0bb
219 * @return The main buddy list. 219 * @return The main buddy list.
220 */ 220 */
221 GaimBuddyList *gaim_get_blist(void); 221 GaimBuddyList *gaim_get_blist(void);
222 222
223 /** 223 /**
224 * Returns the next node of a given node. This function is to be used to iterate
225 * over the tree returned by gaim_get_blist.
226 *
227 * @param node A node.
228 * @param offline Whether to include nodes for offline accounts
229 * @return The next node
230 */
231 GaimBlistNode *gaim_blist_node_next(GaimBlistNode *node, gboolean offline);
232
233 /**
224 * Shows the buddy list, creating a new one if necessary. 234 * Shows the buddy list, creating a new one if necessary.
225 */ 235 */
226 void gaim_blist_show(); 236 void gaim_blist_show();
227 237
228 238