summaryrefslogtreecommitdiff
path: root/src/ivyglutloop.h
diff options
context:
space:
mode:
authorfcolin2000-12-20 15:58:44 +0000
committerfcolin2000-12-20 15:58:44 +0000
commitf94ece0bcc51dba3f431d82032c3d82d4e4a616a (patch)
treedb2d5a13a4b5b1b8d202e830132a2b28aabae756 /src/ivyglutloop.h
parentab5818d2b6b0a373e558b48a854e3cdbe570a5f4 (diff)
downloadivy-c-f94ece0bcc51dba3f431d82032c3d82d4e4a616a.zip
ivy-c-f94ece0bcc51dba3f431d82032c3d82d4e4a616a.tar.gz
ivy-c-f94ece0bcc51dba3f431d82032c3d82d4e4a616a.tar.bz2
ivy-c-f94ece0bcc51dba3f431d82032c3d82d4e4a616a.tar.xz
initial version for the glut eventloop
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
+