aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-05-07 20:07:43 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-05-07 20:07:43 +0200
commita0d04d6253cf70877a11156059209e1f9a2efe31 (patch)
treec320551f230a030d83748797e8a5de0f5953a1fa /bitlbee.h
parent64d1f45ed9ccfd90ba17592ac980dcb3436f9548 (diff)
Got rid of all GLib GIOChannel-related calls outside proxy.c
Diffstat (limited to 'bitlbee.h')
-rw-r--r--bitlbee.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitlbee.h b/bitlbee.h
index 4da87ec6..00e5ce97 100644
--- a/bitlbee.h
+++ b/bitlbee.h
@@ -111,6 +111,7 @@ extern char *CONF_FILE;
#include "query.h"
#include "sock.h"
#include "util.h"
+#include "proxy.h"
typedef struct global {
/* In forked mode, child processes store the fd of the IPC socket here. */
@@ -127,8 +128,8 @@ typedef struct global {
int bitlbee_daemon_init( void );
int bitlbee_inetd_init( void );
-gboolean bitlbee_io_current_client_read( GIOChannel *source, GIOCondition condition, gpointer data );
-gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condition, gpointer data );
+void bitlbee_io_current_client_read( gpointer data, gint source, GaimInputCondition cond );
+void bitlbee_io_current_client_write( gpointer data, gint source, GaimInputCondition cond );
void root_command_string( irc_t *irc, user_t *u, char *command, int flags );
void root_command( irc_t *irc, char *command[] );