diff 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
line wrap: on
line diff
--- a/src/dialogs.c	Sat Jun 14 21:34:31 2003 +0000
+++ b/src/dialogs.c	Sat Jun 14 23:21:02 2003 +0000
@@ -18,46 +18,29 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  *
  */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-#include <string.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <ctype.h>
-
-#ifdef _WIN32
-#include <winsock.h>
-#else
-#include <sys/socket.h>
-#include <time.h>
-#include <netdb.h>
-#include <netinet/in.h>
-#include <unistd.h>
-#include <arpa/inet.h>
-#endif
-
-#include <errno.h>
-#include <math.h>
-
-#include <gtk/gtk.h>
-#include "gaim.h"
-#include "gtkimhtml.h"
-#include "prpl.h"
-#include "gtkblist.h"
+#include "internal.h"
+
+#include "debug.h"
+#include "log.h"
+#include "multi.h"
 #include "notify.h"
 #include "prefs.h"
-#include "multi.h"
-
-#ifdef _WIN32
-#include "win32dep.h"
-#endif
-
-#define PATHSIZE 1024
+#include "privacy.h"
+#include "prpl.h"
+#include "request.h"
+#include "util.h"
+
+#include "gtkblist.h"
+#include "gtkconv.h"
+#include "gtkimhtml.h"
+#include "gtkprefs.h"
+#include "gtkutils.h"
+#include "stock.h"
+
+#include "ui.h"
+
+/* XXX For the soon-to-be-deprecated MultiEntryDlg stuff */
+#include "gaim.h"
 
 static GtkWidget *imdialog = NULL;	/*I only want ONE of these :) */
 static GList *dialogwindows = NULL;