summaryrefslogtreecommitdiff
path: root/src/busxtloop.h
diff options
context:
space:
mode:
authorjacomi1998-08-12 10:23:25 +0000
committerjacomi1998-08-12 10:23:25 +0000
commitd3b04f0209ea826c67a2ee84ced889ee907f49a0 (patch)
treee0900dda136b9a9f38ee7b412db427a7315b06dc /src/busxtloop.h
parent6ff2ef5124e1101f475ad87b178b925489de2845 (diff)
downloadivy-c-d3b04f0209ea826c67a2ee84ced889ee907f49a0.zip
ivy-c-d3b04f0209ea826c67a2ee84ced889ee907f49a0.tar.gz
ivy-c-d3b04f0209ea826c67a2ee84ced889ee907f49a0.tar.bz2
ivy-c-d3b04f0209ea826c67a2ee84ced889ee907f49a0.tar.xz
version relookee en ivy
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