Frameworks/libpurple.framework/Versions/0.5.6/Headers/caps.h
branchadium-1.3
changeset 350 708bedafdc3a
parent 349 17ef128722b7
child 351 b01ab9b157f9
     1.1 --- a/Frameworks/libpurple.framework/Versions/0.5.6/Headers/caps.h	Sun Jun 21 22:04:11 2009 -0400
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,49 +0,0 @@
     1.4 -/*
     1.5 - * purple - Jabber Protocol Plugin
     1.6 - *
     1.7 - * Copyright (C) 2007, Andreas Monitzer <andy@monitzer.com>
     1.8 - *
     1.9 - * This program is free software; you can redistribute it and/or modify
    1.10 - * it under the terms of the GNU General Public License as published by
    1.11 - * the Free Software Foundation; either version 2 of the License, or
    1.12 - * (at your option) any later version.
    1.13 - *
    1.14 - * This program is distributed in the hope that it will be useful,
    1.15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
    1.17 - * GNU General Public License for more details.
    1.18 - *
    1.19 - * You should have received a copy of the GNU General Public License
    1.20 - * along with this program; if not, write to the Free Software
    1.21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA	 02111-1307	 USA
    1.22 - *
    1.23 - */
    1.24 -
    1.25 -#ifndef _PURPLE_JABBER_CAPS_H_
    1.26 -#define _PURPLE_JABBER_CAPS_H_
    1.27 -
    1.28 -typedef struct _JabberCapsClientInfo JabberCapsClientInfo;
    1.29 -
    1.30 -#include "jabber.h"
    1.31 -
    1.32 -/* Implementation of XEP-0115 */
    1.33 -
    1.34 -typedef struct _JabberCapsIdentity {
    1.35 -	char *category;
    1.36 -	char *type;
    1.37 -	char *name;
    1.38 -} JabberCapsIdentity;
    1.39 -
    1.40 -struct _JabberCapsClientInfo {
    1.41 -	GList *identities; /* JabberCapsIdentity */
    1.42 -	GList *features; /* char * */
    1.43 -};
    1.44 -
    1.45 -typedef void (*jabber_caps_get_info_cb)(JabberCapsClientInfo *info, gpointer user_data);
    1.46 -
    1.47 -void jabber_caps_init(void);
    1.48 -
    1.49 -void jabber_caps_get_info(JabberStream *js, const char *who, const char *node, const char *ver, const char *ext, jabber_caps_get_info_cb cb, gpointer user_data);
    1.50 -void jabber_caps_free_clientinfo(JabberCapsClientInfo *clientinfo);
    1.51 -
    1.52 -#endif /* _PURPLE_JABBER_CAPS_H_ */