comparison src/protocols/msn/slp.h @ 9193:502707ca1836

[gaim-migrate @ 9988] Patch by Felipe Contreras to add MSN file transfer and buddy icons. Please test and report any bugs! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 06 Jun 2004 02:39:08 +0000
parents
children ab6636c5a136
comparison
equal deleted inserted replaced
9192:5655dcd94d0f 9193:502707ca1836
1 /**
2 * @file slp.h MSNSLP support
3 *
4 * gaim
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20 #ifndef _MSN_SLP_H_
21 #define _MSN_SLP_H_
22
23 #define DEBUG_SLP 1
24 /* #define DEBUG_SLP_FILES 1 */
25
26 #include "slpcall.h"
27
28 #include "ft.h"
29
30 void msn_xfer_progress_cb(MsnSlpCall *slpcall, gsize total_length, gsize
31 len, gsize offset);
32
33 MsnSlpCall * msn_slp_sip_recv(MsnSlpLink *slplink,
34 const char *body, gsize len);
35
36 void send_bye(MsnSlpCall *slpcall, const char *type);
37
38 void msn_xfer_finish_cb(MsnSlpCall *slpcall,
39 const char *body, long long size);
40
41 void msn_xfer_cancel(GaimXfer *xfer);
42
43 #endif /* _MSN_SLP_H_ */