summaryrefslogtreecommitdiff
path: root/src/busxtloop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/busxtloop.h')
-rw-r--r--src/busxtloop.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/busxtloop.h b/src/busxtloop.h
deleted file mode 100644
index 8f48460..0000000
--- a/src/busxtloop.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef _BUSXTLOOP_H
-#define _BUSXTLOOP_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <X11/Intrinsic.h>
-
-/* general Handle */
-
-#define ANYPORT 0
-
-#ifdef WIN32
-#include <windows.h>
-#define HANDLE SOCKET
-#else
-#define HANDLE int
-#endif
-
-#include "buschannel.h"
-
-extern void BusXtChannelInit(void);
-
-extern Channel BusXtChannelSetUp(
- HANDLE fd,
- void *data,
- ChannelHandleDelete handle_delete,
- ChannelHandleRead handle_read
- );
-
-extern void BusXtChannelClose( Channel channel );
-
-extern void BusXtChannelAppContext( XtAppContext cntx );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif