Mercurial > pidgin
comparison src/dialogs.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 | 1d140b31d4b3 |
| children | 1b85ff65be57 |
comparison
equal
deleted
inserted
replaced
| 5871:508adf90fbb9 | 5872:059d95c67cda |
|---|---|
| 16 * You should have received a copy of the GNU General Public License | 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 | 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 | 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 * | 19 * |
| 20 */ | 20 */ |
| 21 | 21 #include "internal.h" |
| 22 #ifdef HAVE_CONFIG_H | 22 |
| 23 #include <config.h> | 23 #include "debug.h" |
| 24 #endif | 24 #include "log.h" |
| 25 #include <string.h> | 25 #include "multi.h" |
| 26 #include <stdio.h> | |
| 27 #include <stdlib.h> | |
| 28 #include <sys/types.h> | |
| 29 #include <sys/stat.h> | |
| 30 #include <fcntl.h> | |
| 31 #include <ctype.h> | |
| 32 | |
| 33 #ifdef _WIN32 | |
| 34 #include <winsock.h> | |
| 35 #else | |
| 36 #include <sys/socket.h> | |
| 37 #include <time.h> | |
| 38 #include <netdb.h> | |
| 39 #include <netinet/in.h> | |
| 40 #include <unistd.h> | |
| 41 #include <arpa/inet.h> | |
| 42 #endif | |
| 43 | |
| 44 #include <errno.h> | |
| 45 #include <math.h> | |
| 46 | |
| 47 #include <gtk/gtk.h> | |
| 48 #include "gaim.h" | |
| 49 #include "gtkimhtml.h" | |
| 50 #include "prpl.h" | |
| 51 #include "gtkblist.h" | |
| 52 #include "notify.h" | 26 #include "notify.h" |
| 53 #include "prefs.h" | 27 #include "prefs.h" |
| 54 #include "multi.h" | 28 #include "privacy.h" |
| 55 | 29 #include "prpl.h" |
| 56 #ifdef _WIN32 | 30 #include "request.h" |
| 57 #include "win32dep.h" | 31 #include "util.h" |
| 58 #endif | 32 |
| 59 | 33 #include "gtkblist.h" |
| 60 #define PATHSIZE 1024 | 34 #include "gtkconv.h" |
| 35 #include "gtkimhtml.h" | |
| 36 #include "gtkprefs.h" | |
| 37 #include "gtkutils.h" | |
| 38 #include "stock.h" | |
| 39 | |
| 40 #include "ui.h" | |
| 41 | |
| 42 /* XXX For the soon-to-be-deprecated MultiEntryDlg stuff */ | |
| 43 #include "gaim.h" | |
| 61 | 44 |
| 62 static GtkWidget *imdialog = NULL; /*I only want ONE of these :) */ | 45 static GtkWidget *imdialog = NULL; /*I only want ONE of these :) */ |
| 63 static GList *dialogwindows = NULL; | 46 static GList *dialogwindows = NULL; |
| 64 static GtkWidget *importdialog; | 47 static GtkWidget *importdialog; |
| 65 static GaimConnection *importgc; | 48 static GaimConnection *importgc; |
