comparison src/internal.h @ 6371:8f94cce8faa5

[gaim-migrate @ 6876] I think I touched almost every file. Here's what happened. I started off fixing up the Makefile.am and configure.ac files to help with the core/UI split some. Then I got annoyed with the build_{allow,deny}_list() functions that everything used, and decided to core/UI split privacy. While doing that, I decided to redesign the dialog. So now, a lot has changed, but not really so much. Just that most files got affected. Oh yeah, and the UI stuff was taken out of internal.h and moved to gtkinternal.h. If you use this, please be aware of this change. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 05 Aug 2003 10:55:04 +0000
parents 66ab9c9b3524
children fa6395637e2c
comparison
equal deleted inserted replaced
6370:a4b83df2165b 6371:8f94cce8faa5
1 /** 1 /**
2 * @file internal.h Internal definitions and includes 2 * @file internal.h Internal definitions and includes
3 * @ingroup gtkui 3 * @ingroup core
4 * 4 *
5 * gaim 5 * gaim
6 * 6 *
7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> 7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
8 * 8 *
22 */ 22 */
23 #ifndef _GAIM_INTERNAL_H_ 23 #ifndef _GAIM_INTERNAL_H_
24 #define _GAIM_INTERNAL_H_ 24 #define _GAIM_INTERNAL_H_
25 25
26 #ifdef HAVE_CONFIG_H 26 #ifdef HAVE_CONFIG_H
27 #include <config.h> 27 # include <config.h>
28 #endif 28 #endif
29 29
30 #ifdef ENABLE_NLS 30 #ifdef ENABLE_NLS
31 # include <libintl.h> 31 # include <libintl.h>
32 # define _(x) gettext(x) 32 # define _(x) gettext(x)
91 # include <netinet/in.h> 91 # include <netinet/in.h>
92 # include <sys/socket.h> 92 # include <sys/socket.h>
93 # include <arpa/inet.h> 93 # include <arpa/inet.h>
94 # include <sys/un.h> 94 # include <sys/un.h>
95 # include <sys/utsname.h> 95 # include <sys/utsname.h>
96 # include <gdk/gdkx.h>
97 # include <netdb.h> 96 # include <netdb.h>
98 # include <signal.h> 97 # include <signal.h>
99 # include <unistd.h> 98 # include <unistd.h>
100 #endif 99 #endif
101 100
107 # define HOST_NAME_MAX 255 106 # define HOST_NAME_MAX 255
108 #endif 107 #endif
109 108
110 #define PATHSIZE 1024 109 #define PATHSIZE 1024
111 110
112 #include <gtk/gtk.h>
113 #include <glib.h> 111 #include <glib.h>
114 112
115 #ifdef _WIN32 113 #ifdef _WIN32
116 #include "win32dep.h" 114 #include "win32dep.h"
117 #endif 115 #endif
118 116
119 117
120 #define WEBSITE "http://gaim.sourceforge.net/" 118 #define GAIM_WEBSITE "http://gaim.sourceforge.net/"
121 119
122 #endif /* _GAIM_INTERNAL_H_ */ 120 #endif /* _GAIM_INTERNAL_H_ */