comparison plugins/idle.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 ff89436b30d2
children a18e88c4dace
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
1 /* a nifty little plugin to set your idle time to whatever you want it to be. 1 /* a nifty little plugin to set your idle time to whatever you want it to be.
2 * useful for almost nothing. mostly just a demo plugin. but it's fun to have 2 * useful for almost nothing. mostly just a demo plugin. but it's fun to have
3 * 40-day idle times. 3 * 40-day idle times.
4 */ 4 */
5 5
6 #include "config.h" 6 #include "internal.h"
7
8 #include "connection.h"
9 #include "debug.h"
10 #include "server.h"
11
12 #include "gtkplugin.h"
13 #include "gtkutils.h"
7 14
8 #include "gaim.h" 15 #include "gaim.h"
9 #include "multi.h"
10 #include "gtkplugin.h"
11 #include <sys/time.h>
12 16
13 #define IDLE_PLUGIN_ID "gtk-idle" 17 #define IDLE_PLUGIN_ID "gtk-idle"
14 18
15 static GaimConnection *gc = NULL; 19 static GaimConnection *gc = NULL;
16 20