comparison src/gaimrc.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 d048e5f2af27
children 964e4f94fc56
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 "account.h"
24 #endif 24 #include "debug.h"
25 #include <string.h> 25 #include "log.h"
26 26 #include "notify.h"
27 #ifndef _WIN32 27 #include "pounce.h"
28 #include <sys/time.h>
29 #include <unistd.h>
30 #endif
31
32 #include <sys/types.h>
33 #include <sys/stat.h>
34
35 #include <ctype.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include "gaim.h"
39 #include "prpl.h"
40 #include "prefs.h" 28 #include "prefs.h"
41 #include "proxy.h" 29 #include "proxy.h"
30 #include "prpl.h"
42 #include "sound.h" 31 #include "sound.h"
32 #include "ui.h"
33 #include "util.h"
34
35 #include "gaim.h"
36
37 #include "gtkpounce.h"
43 #include "gtksound.h" 38 #include "gtksound.h"
44 #include "pounce.h"
45 #include "gtkpounce.h"
46 #include "notify.h"
47
48 #ifdef _WIN32
49 #include "win32dep.h"
50 #endif
51 39
52 /* for people like myself, who are too lazy to add an away msg :) */ 40 /* for people like myself, who are too lazy to add an away msg :) */
53 #define BORING_DEFAULT_AWAY_MSG _("sorry, i ran out for a while. bbl") 41 #define BORING_DEFAULT_AWAY_MSG _("sorry, i ran out for a while. bbl")
54 #define MAX_VALUES 10 42 #define MAX_VALUES 10
55 43