7651
|
1 /*
|
|
2 * gaim
|
|
3 *
|
|
4 * Copyright (C) Timothy T Ringenbach <omarvo@hotmail.com>
|
|
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
|
|
21 /**
|
|
22 * Process ymsg file receive invites.
|
|
23 */
|
|
24 void yahoo_process_filetransfer(GaimConnection *gc, struct yahoo_packet *pkt);
|
|
25
|
|
26 /**
|
|
27 * Send a file.
|
|
28 *
|
|
29 * @param gc The GaimConnection handle.
|
|
30 * @param who Who are we sending it to?
|
|
31 * @param file What file?
|
|
32 */
|
|
33 void yahoo_send_file(GaimConnection *gc, const char *who, const char *file);
|
|
34
|
|
35 /**
|
|
36 * Sends a file, that the user chooses after this call.
|
|
37 *
|
|
38 * @param gc The GaimConnection.
|
|
39 * @param who Who are we going to send a file to?
|
|
40 */
|
|
41 void yahoo_ask_send_file(GaimConnection *gc, const char *who);
|