summaryrefslogtreecommitdiff
path: root/src/busxtloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/busxtloop.c')
-rw-r--r--src/busxtloop.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/busxtloop.c b/src/busxtloop.c
index e95bc45..fcaa10e 100644
--- a/src/busxtloop.c
+++ b/src/busxtloop.c
@@ -20,7 +20,6 @@
#endif
-
#include <X11/Intrinsic.h>
#include "buschannel.h"
@@ -30,8 +29,8 @@ struct _channel {
XtInputId id_read;
XtInputId id_delete;
void *data;
- void (*handle_delete)( void *data );
- void (*handle_read)( Channel channel, HANDLE fd, void *data);
+ ChannelHandleDelete handle_delete;
+ ChannelHandleRead handle_read;
};