Frameworks/libpurple.framework/Versions/0.6.2/Headers/si.h
changeset 2592 e8d15275025e
parent 2151 ff7dc80dc373
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Frameworks/libpurple.framework/Versions/0.6.2/Headers/si.h	Fri Aug 21 13:25:11 2009 -0700
     1.3 @@ -0,0 +1,38 @@
     1.4 +/**
     1.5 + * @file si.h SI transfer functions
     1.6 + *
     1.7 + * purple
     1.8 + *
     1.9 + * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
    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 +#ifndef PURPLE_JABBER_SI_H_
    1.26 +#define PURPLE_JABBER_SI_H_
    1.27 +
    1.28 +#include "ft.h"
    1.29 +
    1.30 +#include "jabber.h"
    1.31 +
    1.32 +void jabber_bytestreams_parse(JabberStream *js, const char *from,
    1.33 +                              JabberIqType type, const char *id, xmlnode *query);
    1.34 +void jabber_si_parse(JabberStream *js, const char *from, JabberIqType type,
    1.35 +                     const char *id, xmlnode *si);
    1.36 +PurpleXfer *jabber_si_new_xfer(PurpleConnection *gc, const char *who);
    1.37 +void jabber_si_xfer_send(PurpleConnection *gc, const char *who, const char *file);
    1.38 +void jabber_si_init(void);
    1.39 +void jabber_si_uninit(void);
    1.40 +
    1.41 +#endif /* PURPLE_JABBER_SI_H_ */