]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.h
Renamed due to added GLUT support.
[flightgear.git] / Main / GLUTkey.h
1 /**************************************************************************
2  * GLUTkey.h -- handle GLUT keyboard events
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * $Id$
7  * (Log is kept at end of this file)
8  **************************************************************************/
9
10
11 #ifndef GLUTKEY_H
12 #define GLUTKEY_H
13
14
15 #ifdef GLUT
16     #include <GL/glut.h>
17 #elif TIGER
18     /* assumes -I/usr/include/mesa in compile command */
19     #include "gltk.h"
20 #endif
21
22 /* Handle keyboard events */
23 void GLUTkey(unsigned char k, int x, int y);
24
25
26 #endif GLUTKEY_H
27
28
29 /* $Log$
30 /* Revision 1.1  1997/05/21 15:57:51  curt
31 /* Renamed due to added GLUT support.
32 /*
33  * Revision 1.2  1997/05/17 00:17:34  curt
34  * Trying to stub in support for standard OpenGL.
35  *
36  * Revision 1.1  1997/05/16 16:05:53  curt
37  * Initial revision.
38  *
39  */