Frameworks/libpurple.framework/Versions/0.6.2/Headers/si.h
author Zachary West <zacw@adium.im>
Fri Aug 21 13:25:11 2009 -0700 (2009-08-21)
changeset 2592 e8d15275025e
parent 2151 Frameworks/libpurple.framework/Versions/0.6.0/Headers/si.h@ff7dc80dc373
permissions -rw-r--r--
im.pidgin.adium.1-4 at 267c6165e02e34318a1823960bd04c0639952f73
     1 /**
     2  * @file si.h SI transfer functions
     3  *
     4  * purple
     5  *
     6  * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
     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., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
    21  */
    22 #ifndef PURPLE_JABBER_SI_H_
    23 #define PURPLE_JABBER_SI_H_
    24 
    25 #include "ft.h"
    26 
    27 #include "jabber.h"
    28 
    29 void jabber_bytestreams_parse(JabberStream *js, const char *from,
    30                               JabberIqType type, const char *id, xmlnode *query);
    31 void jabber_si_parse(JabberStream *js, const char *from, JabberIqType type,
    32                      const char *id, xmlnode *si);
    33 PurpleXfer *jabber_si_new_xfer(PurpleConnection *gc, const char *who);
    34 void jabber_si_xfer_send(PurpleConnection *gc, const char *who, const char *file);
    35 void jabber_si_init(void);
    36 void jabber_si_uninit(void);
    37 
    38 #endif /* PURPLE_JABBER_SI_H_ */