comparison libpurple/protocols/yahoo/yahoo_filexfer.h @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 44b4e8bd759b
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /* 1 /*
2 * gaim 2 * purple
3 * 3 *
4 * Gaim is the legal property of its developers, whose names are too numerous 4 * Purple is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this 5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution. 6 * source distribution.
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 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 9 * it under the terms of the GNU General Public License as published by
25 #include "ft.h" 25 #include "ft.h"
26 26
27 /** 27 /**
28 * Process ymsg events, particular IMViroments like Doodle 28 * Process ymsg events, particular IMViroments like Doodle
29 */ 29 */
30 void yahoo_process_p2pfilexfer( GaimConnection *gc, struct yahoo_packet *pkt ); 30 void yahoo_process_p2pfilexfer( PurpleConnection *gc, struct yahoo_packet *pkt );
31 31
32 /** 32 /**
33 * Process ymsg file receive invites. 33 * Process ymsg file receive invites.
34 */ 34 */
35 void yahoo_process_filetransfer(GaimConnection *gc, struct yahoo_packet *pkt); 35 void yahoo_process_filetransfer(PurpleConnection *gc, struct yahoo_packet *pkt);
36 36
37 /** 37 /**
38 * Create a new GaimXfer 38 * Create a new PurpleXfer
39 * 39 *
40 * @param gc The GaimConnection handle. 40 * @param gc The PurpleConnection handle.
41 * @param who Who will we be sending it to? 41 * @param who Who will we be sending it to?
42 */ 42 */
43 GaimXfer *yahoo_new_xfer(GaimConnection *gc, const char *who); 43 PurpleXfer *yahoo_new_xfer(PurpleConnection *gc, const char *who);
44 44
45 /** 45 /**
46 * Send a file. 46 * Send a file.
47 * 47 *
48 * @param gc The GaimConnection handle. 48 * @param gc The PurpleConnection handle.
49 * @param who Who are we sending it to? 49 * @param who Who are we sending it to?
50 * @param file What file? If NULL, user will choose after this call. 50 * @param file What file? If NULL, user will choose after this call.
51 */ 51 */
52 void yahoo_send_file(GaimConnection *gc, const char *who, const char *file); 52 void yahoo_send_file(PurpleConnection *gc, const char *who, const char *file);
53 53
54 #endif 54 #endif