Frameworks/libpurple.framework/Versions/0.5.6/Headers/buddylist.h
branchadium-1.3
changeset 350 708bedafdc3a
parent 349 17ef128722b7
child 351 b01ab9b157f9
     1.1 --- a/Frameworks/libpurple.framework/Versions/0.5.6/Headers/buddylist.h	Sun Jun 21 22:04:11 2009 -0400
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,65 +0,0 @@
     1.4 -/**
     1.5 - * @file buddylist.h
     1.6 - *
     1.7 - * purple
     1.8 - *
     1.9 - * Copyright (C) 2005  Bartosz Oler <bartosz@bzimage.us>
    1.10 - *
    1.11 - * This program is free software; you can redistribute it and/or modify
    1.12 - * it under the terms of the GNU General Public License as published by
    1.13 - * the Free Software Foundation; either version 2 of the License, or
    1.14 - * (at your option) any later version.
    1.15 - *
    1.16 - * This program is distributed in the hope that it will be useful,
    1.17 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 - * GNU General Public License for more details.
    1.20 - *
    1.21 - * You should have received a copy of the GNU General Public License
    1.22 - * along with this program; if not, write to the Free Software
    1.23 - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
    1.24 - */
    1.25 -
    1.26 -
    1.27 -#ifndef _PURPLE_GG_BUDDYLIST_H
    1.28 -#define _PURPLE_GG_BUDDYLIST_H
    1.29 -
    1.30 -#include "connection.h"
    1.31 -#include "account.h"
    1.32 -
    1.33 -void
    1.34 -ggp_buddylist_send(PurpleConnection *gc);
    1.35 -
    1.36 -/**
    1.37 - * Load buddylist from server into the rooster.
    1.38 - *
    1.39 - * @param gc PurpleConnection
    1.40 - * @param buddylist Pointer to the buddylist that will be loaded.
    1.41 - */
    1.42 -/* void ggp_buddylist_load(PurpleConnection *gc, char *buddylist) {{{ */
    1.43 -void
    1.44 -ggp_buddylist_load(PurpleConnection *gc, char *buddylist);
    1.45 -
    1.46 -/**
    1.47 - * Set offline status for all buddies.
    1.48 - *
    1.49 - * @param gc Connection handler
    1.50 - */
    1.51 -void
    1.52 -ggp_buddylist_offline(PurpleConnection *gc);
    1.53 -
    1.54 -/**
    1.55 - * Get all the buddies in the current account.
    1.56 - *
    1.57 - * @param account Current account.
    1.58 - * 
    1.59 - * @return List of buddies.
    1.60 - */
    1.61 -char *
    1.62 -ggp_buddylist_dump(PurpleAccount *account);
    1.63 -
    1.64 -
    1.65 -#endif /* _PURPLE_GG_BUDDYLIST_H */
    1.66 -
    1.67 -
    1.68 -/* vim: set ts=8 sts=0 sw=8 noet: */