comparison src/ft.c @ 5872:059d95c67cda

[gaim-migrate @ 6304] The legendary Header File Cleanup! Files now only include what they need. This should reduce the number of files that must recompile when a header file changes. It's a lot nicer. Trust me on it. I also added a couple new header files. I hope I didn't break TOO much! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 23:21:02 +0000
parents 46d7ad0dfa26
children ac191233b816
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
1 /** 1 /**
2 * @file ft.c The file transfer interface. 2 * @file ft.c The file transfer interface.
3 * 3 *
4 * gaim 4 * gaim
5 * 5 *
6 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> 6 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
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
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
18 * You should have received a copy of the GNU General Public License 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 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * 21 *
22 */ 22 */
23 23 #include "internal.h"
24 #ifdef HAVE_CONFIG_H 24 #include "ft.h"
25 #include <config.h> 25 #include "notify.h"
26 #endif
27
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <errno.h>
31 #include <string.h>
32
33 #include <gtk/gtk.h>
34 #include "gaim.h"
35 #include "proxy.h" 26 #include "proxy.h"
36 #include "notify.h"
37
38 #ifdef _WIN32
39 #include "win32dep.h"
40 #endif
41 27
42 static struct gaim_xfer_ui_ops *xfer_ui_ops = NULL; 28 static struct gaim_xfer_ui_ops *xfer_ui_ops = NULL;
43 29
44 struct gaim_xfer * 30 struct gaim_xfer *
45 gaim_xfer_new(GaimAccount *account, GaimXferType type, 31 gaim_xfer_new(GaimAccount *account, GaimXferType type,