summaryrefslogtreecommitdiff
path: root/src/ivyglutloop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyglutloop.h')
-rwxr-xr-xsrc/ivyglutloop.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/ivyglutloop.h b/src/ivyglutloop.h
new file mode 100755
index 0000000..0819a93
--- /dev/null
+++ b/src/ivyglutloop.h
@@ -0,0 +1,56 @@
+/*
+ * Ivy, C interface
+ *
+ * Copyright (C) 1997-1999
+ * Centre d'Études de la Navigation Aérienne
+ *
+ * Main loop based on GLUT ( OpenGL ) Toolkit
+ *
+ * Authors: François-Régis Colin <colin@cenatoulouse.dgac.fr>
+ * Stéphane Chatty <chatty@cenatoulouse.dgac.fr>
+ *
+ * $Id$
+ *
+ * Please refer to file version.h for the
+ * copyright notice regarding this software
+ */
+
+#ifndef IVYGLUTLOOP_H
+#define IVYGLUTLOOP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <GL/Glut.h>
+
+/* general Handle */
+
+#define ANYPORT 0
+
+#ifdef WIN32
+#include <windows.h>
+#define HANDLE SOCKET
+#else
+#define HANDLE int
+#endif
+
+#include "ivychannel.h"
+
+extern void IvyGlutChannelInit(void);
+
+extern Channel IvyGlutChannelSetUp(
+ HANDLE fd,
+ void *data,
+ ChannelHandleDelete handle_delete,
+ ChannelHandleRead handle_read
+);
+
+extern void IvyGlutChannelClose( Channel channel );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+