Making the definition of "WIN32_LEAN_AND_MEAN" conditional to enhance compatibility...
[freeglut] / include / GL / freeglut_std.h
1 #ifndef  __FREEGLUT_STD_H__
2 #define  __FREEGLUT_STD_H__
3
4 /*
5  * freeglut_std.h
6  *
7  * The GLUT-compatible part of the freeglut library include file
8  *
9  * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
10  * Written by Pawel W. Olszta, <olszta@sourceforge.net>
11  * Creation date: Thu Dec 2 1999
12  *
13  * Permission is hereby granted, free of charge, to any person obtaining a
14  * copy of this software and associated documentation files (the "Software"),
15  * to deal in the Software without restriction, including without limitation
16  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17  * and/or sell copies of the Software, and to permit persons to whom the
18  * Software is furnished to do so, subject to the following conditions:
19  *
20  * The above copyright notice and this permission notice shall be included
21  * in all copies or substantial portions of the Software.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
26  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
27  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29  */
30
31 #ifdef __cplusplus
32     extern "C" {
33 #endif
34
35 /*
36  * Under windows, we have to differentiate between static and dynamic libraries
37  */
38 #ifdef _WIN32
39 /* #pragma may not be supported by some compilers.
40  * Discussion by FreeGLUT developers suggests that
41  * Visual C++ specific code involving pragmas may
42  * need to move to a separate header.  24th Dec 2003
43  */
44
45 /* Define FREEGLUT_LIB_PRAGMAS to 1 to include library
46  * pragmas or to 1 to exclude library pragmas.
47  * The default behavior depends on the compiler/platform.
48  */
49 #   ifndef FREEGLUT_LIB_PRAGMAS
50 #       if ( defined(_MSC_VER) || defined(__WATCOMC__) ) && !defined(_WIN32_WCE)
51 #           define FREEGLUT_LIB_PRAGMAS 1
52 #       else
53 #           define FREEGLUT_LIB_PRAGMAS 0
54 #       endif
55 #   endif
56
57 #  ifndef WIN32_LEAN_AND_MEAN
58 #    define WIN32_LEAN_AND_MEAN 1
59 #  endif
60 #   define NOMINMAX
61 #   include <Windows.h>
62
63 /* Windows static library */
64 #   ifdef FREEGLUT_STATIC
65
66 #       define FGAPI
67 #       define FGAPIENTRY
68
69         /* Link with Win32 static freeglut lib */
70 #       if FREEGLUT_LIB_PRAGMAS
71 #           pragma comment (lib, "freeglut_static.lib")
72 #       endif
73
74 /* Windows shared library (DLL) */
75 #   else
76
77 #       define FGAPIENTRY __stdcall
78 #       if defined(FREEGLUT_EXPORTS)
79 #           define FGAPI __declspec(dllexport)
80 #       else
81 #           define FGAPI __declspec(dllimport)
82
83             /* Link with Win32 shared freeglut lib */
84 #           if FREEGLUT_LIB_PRAGMAS
85 #               pragma comment (lib, "freeglut.lib")
86 #           endif
87
88 #       endif
89
90 #   endif
91
92 /* Drag in other Windows libraries as required by FreeGLUT */
93 #   if FREEGLUT_LIB_PRAGMAS
94 #       pragma comment (lib, "glu32.lib")    /* link OpenGL Utility lib     */
95 #       pragma comment (lib, "opengl32.lib") /* link Microsoft OpenGL lib   */
96 #       pragma comment (lib, "gdi32.lib")    /* link Windows GDI lib        */
97 #       pragma comment (lib, "winmm.lib")    /* link Windows MultiMedia lib */
98 #       pragma comment (lib, "user32.lib")   /* link Windows user lib       */
99 #   endif
100
101 #else
102
103 /* Non-Windows definition of FGAPI and FGAPIENTRY  */
104 #        define FGAPI
105 #        define FGAPIENTRY
106
107 #endif
108
109 /*
110  * The freeglut and GLUT API versions
111  */
112 #define  FREEGLUT             1
113 #define  GLUT_API_VERSION     4
114 #define  FREEGLUT_VERSION_2_0 1
115 #define  GLUT_XLIB_IMPLEMENTATION 13
116
117 /*
118  * Always include OpenGL and GLU headers
119  */
120 #include <GL/gl.h>
121 #include <GL/glu.h>
122
123 /*
124  * GLUT API macro definitions -- the special key codes:
125  */
126 #define  GLUT_KEY_F1                        0x0001
127 #define  GLUT_KEY_F2                        0x0002
128 #define  GLUT_KEY_F3                        0x0003
129 #define  GLUT_KEY_F4                        0x0004
130 #define  GLUT_KEY_F5                        0x0005
131 #define  GLUT_KEY_F6                        0x0006
132 #define  GLUT_KEY_F7                        0x0007
133 #define  GLUT_KEY_F8                        0x0008
134 #define  GLUT_KEY_F9                        0x0009
135 #define  GLUT_KEY_F10                       0x000A
136 #define  GLUT_KEY_F11                       0x000B
137 #define  GLUT_KEY_F12                       0x000C
138 #define  GLUT_KEY_LEFT                      0x0064
139 #define  GLUT_KEY_UP                        0x0065
140 #define  GLUT_KEY_RIGHT                     0x0066
141 #define  GLUT_KEY_DOWN                      0x0067
142 #define  GLUT_KEY_PAGE_UP                   0x0068
143 #define  GLUT_KEY_PAGE_DOWN                 0x0069
144 #define  GLUT_KEY_HOME                      0x006A
145 #define  GLUT_KEY_END                       0x006B
146 #define  GLUT_KEY_INSERT                    0x006C
147
148 /*
149  * GLUT API macro definitions -- mouse state definitions
150  */
151 #define  GLUT_LEFT_BUTTON                   0x0000
152 #define  GLUT_MIDDLE_BUTTON                 0x0001
153 #define  GLUT_RIGHT_BUTTON                  0x0002
154 #define  GLUT_DOWN                          0x0000
155 #define  GLUT_UP                            0x0001
156 #define  GLUT_LEFT                          0x0000
157 #define  GLUT_ENTERED                       0x0001
158
159 /*
160  * GLUT API macro definitions -- the display mode definitions
161  */
162 #define  GLUT_RGB                           0x0000
163 #define  GLUT_RGBA                          0x0000
164 #define  GLUT_INDEX                         0x0001
165 #define  GLUT_SINGLE                        0x0000
166 #define  GLUT_DOUBLE                        0x0002
167 #define  GLUT_ACCUM                         0x0004
168 #define  GLUT_ALPHA                         0x0008
169 #define  GLUT_DEPTH                         0x0010
170 #define  GLUT_STENCIL                       0x0020
171 #define  GLUT_MULTISAMPLE                   0x0080
172 #define  GLUT_STEREO                        0x0100
173 #define  GLUT_LUMINANCE                     0x0200
174 #define  GLUT_CAPTIONLESS                   0x0400
175 #define  GLUT_BORDERLESS                    0x0800
176
177 /*
178  * GLUT API macro definitions -- windows and menu related definitions
179  */
180 #define  GLUT_MENU_NOT_IN_USE               0x0000
181 #define  GLUT_MENU_IN_USE                   0x0001
182 #define  GLUT_NOT_VISIBLE                   0x0000
183 #define  GLUT_VISIBLE                       0x0001
184 #define  GLUT_HIDDEN                        0x0000
185 #define  GLUT_FULLY_RETAINED                0x0001
186 #define  GLUT_PARTIALLY_RETAINED            0x0002
187 #define  GLUT_FULLY_COVERED                 0x0003
188
189 /*
190  * GLUT API macro definitions -- fonts definitions
191  *
192  * Steve Baker suggested to make it binary compatible with GLUT:
193  */
194 #if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__WATCOMC__)
195 #   define  GLUT_STROKE_ROMAN               ((void *)0x0000)
196 #   define  GLUT_STROKE_MONO_ROMAN          ((void *)0x0001)
197 #   define  GLUT_BITMAP_9_BY_15             ((void *)0x0002)
198 #   define  GLUT_BITMAP_8_BY_13             ((void *)0x0003)
199 #   define  GLUT_BITMAP_TIMES_ROMAN_10      ((void *)0x0004)
200 #   define  GLUT_BITMAP_TIMES_ROMAN_24      ((void *)0x0005)
201 #   define  GLUT_BITMAP_HELVETICA_10        ((void *)0x0006)
202 #   define  GLUT_BITMAP_HELVETICA_12        ((void *)0x0007)
203 #   define  GLUT_BITMAP_HELVETICA_18        ((void *)0x0008)
204 #else
205     /*
206      * I don't really know if it's a good idea... But here it goes:
207      */
208     extern void* glutStrokeRoman;
209     extern void* glutStrokeMonoRoman;
210     extern void* glutBitmap9By15;
211     extern void* glutBitmap8By13;
212     extern void* glutBitmapTimesRoman10;
213     extern void* glutBitmapTimesRoman24;
214     extern void* glutBitmapHelvetica10;
215     extern void* glutBitmapHelvetica12;
216     extern void* glutBitmapHelvetica18;
217
218     /*
219      * Those pointers will be used by following definitions:
220      */
221 #   define  GLUT_STROKE_ROMAN               ((void *) &glutStrokeRoman)
222 #   define  GLUT_STROKE_MONO_ROMAN          ((void *) &glutStrokeMonoRoman)
223 #   define  GLUT_BITMAP_9_BY_15             ((void *) &glutBitmap9By15)
224 #   define  GLUT_BITMAP_8_BY_13             ((void *) &glutBitmap8By13)
225 #   define  GLUT_BITMAP_TIMES_ROMAN_10      ((void *) &glutBitmapTimesRoman10)
226 #   define  GLUT_BITMAP_TIMES_ROMAN_24      ((void *) &glutBitmapTimesRoman24)
227 #   define  GLUT_BITMAP_HELVETICA_10        ((void *) &glutBitmapHelvetica10)
228 #   define  GLUT_BITMAP_HELVETICA_12        ((void *) &glutBitmapHelvetica12)
229 #   define  GLUT_BITMAP_HELVETICA_18        ((void *) &glutBitmapHelvetica18)
230 #endif
231
232 /*
233  * GLUT API macro definitions -- the glutGet parameters
234  */
235 #define  GLUT_WINDOW_X                      0x0064
236 #define  GLUT_WINDOW_Y                      0x0065
237 #define  GLUT_WINDOW_WIDTH                  0x0066
238 #define  GLUT_WINDOW_HEIGHT                 0x0067
239 #define  GLUT_WINDOW_BUFFER_SIZE            0x0068
240 #define  GLUT_WINDOW_STENCIL_SIZE           0x0069
241 #define  GLUT_WINDOW_DEPTH_SIZE             0x006A
242 #define  GLUT_WINDOW_RED_SIZE               0x006B
243 #define  GLUT_WINDOW_GREEN_SIZE             0x006C
244 #define  GLUT_WINDOW_BLUE_SIZE              0x006D
245 #define  GLUT_WINDOW_ALPHA_SIZE             0x006E
246 #define  GLUT_WINDOW_ACCUM_RED_SIZE         0x006F
247 #define  GLUT_WINDOW_ACCUM_GREEN_SIZE       0x0070
248 #define  GLUT_WINDOW_ACCUM_BLUE_SIZE        0x0071
249 #define  GLUT_WINDOW_ACCUM_ALPHA_SIZE       0x0072
250 #define  GLUT_WINDOW_DOUBLEBUFFER           0x0073
251 #define  GLUT_WINDOW_RGBA                   0x0074
252 #define  GLUT_WINDOW_PARENT                 0x0075
253 #define  GLUT_WINDOW_NUM_CHILDREN           0x0076
254 #define  GLUT_WINDOW_COLORMAP_SIZE          0x0077
255 #define  GLUT_WINDOW_NUM_SAMPLES            0x0078
256 #define  GLUT_WINDOW_STEREO                 0x0079
257 #define  GLUT_WINDOW_CURSOR                 0x007A
258
259 #define  GLUT_SCREEN_WIDTH                  0x00C8
260 #define  GLUT_SCREEN_HEIGHT                 0x00C9
261 #define  GLUT_SCREEN_WIDTH_MM               0x00CA
262 #define  GLUT_SCREEN_HEIGHT_MM              0x00CB
263 #define  GLUT_MENU_NUM_ITEMS                0x012C
264 #define  GLUT_DISPLAY_MODE_POSSIBLE         0x0190
265 #define  GLUT_INIT_WINDOW_X                 0x01F4
266 #define  GLUT_INIT_WINDOW_Y                 0x01F5
267 #define  GLUT_INIT_WINDOW_WIDTH             0x01F6
268 #define  GLUT_INIT_WINDOW_HEIGHT            0x01F7
269 #define  GLUT_INIT_DISPLAY_MODE             0x01F8
270 #define  GLUT_ELAPSED_TIME                  0x02BC
271 #define  GLUT_WINDOW_FORMAT_ID              0x007B
272
273 /*
274  * GLUT API macro definitions -- the glutDeviceGet parameters
275  */
276 #define  GLUT_HAS_KEYBOARD                  0x0258
277 #define  GLUT_HAS_MOUSE                     0x0259
278 #define  GLUT_HAS_SPACEBALL                 0x025A
279 #define  GLUT_HAS_DIAL_AND_BUTTON_BOX       0x025B
280 #define  GLUT_HAS_TABLET                    0x025C
281 #define  GLUT_NUM_MOUSE_BUTTONS             0x025D
282 #define  GLUT_NUM_SPACEBALL_BUTTONS         0x025E
283 #define  GLUT_NUM_BUTTON_BOX_BUTTONS        0x025F
284 #define  GLUT_NUM_DIALS                     0x0260
285 #define  GLUT_NUM_TABLET_BUTTONS            0x0261
286 #define  GLUT_DEVICE_IGNORE_KEY_REPEAT      0x0262
287 #define  GLUT_DEVICE_KEY_REPEAT             0x0263
288 #define  GLUT_HAS_JOYSTICK                  0x0264
289 #define  GLUT_OWNS_JOYSTICK                 0x0265
290 #define  GLUT_JOYSTICK_BUTTONS              0x0266
291 #define  GLUT_JOYSTICK_AXES                 0x0267
292 #define  GLUT_JOYSTICK_POLL_RATE            0x0268
293
294 /*
295  * GLUT API macro definitions -- the glutLayerGet parameters
296  */
297 #define  GLUT_OVERLAY_POSSIBLE              0x0320
298 #define  GLUT_LAYER_IN_USE                  0x0321
299 #define  GLUT_HAS_OVERLAY                   0x0322
300 #define  GLUT_TRANSPARENT_INDEX             0x0323
301 #define  GLUT_NORMAL_DAMAGED                0x0324
302 #define  GLUT_OVERLAY_DAMAGED               0x0325
303
304 /*
305  * GLUT API macro definitions -- the glutVideoResizeGet parameters
306  */
307 #define  GLUT_VIDEO_RESIZE_POSSIBLE         0x0384
308 #define  GLUT_VIDEO_RESIZE_IN_USE           0x0385
309 #define  GLUT_VIDEO_RESIZE_X_DELTA          0x0386
310 #define  GLUT_VIDEO_RESIZE_Y_DELTA          0x0387
311 #define  GLUT_VIDEO_RESIZE_WIDTH_DELTA      0x0388
312 #define  GLUT_VIDEO_RESIZE_HEIGHT_DELTA     0x0389
313 #define  GLUT_VIDEO_RESIZE_X                0x038A
314 #define  GLUT_VIDEO_RESIZE_Y                0x038B
315 #define  GLUT_VIDEO_RESIZE_WIDTH            0x038C
316 #define  GLUT_VIDEO_RESIZE_HEIGHT           0x038D
317
318 /*
319  * GLUT API macro definitions -- the glutUseLayer parameters
320  */
321 #define  GLUT_NORMAL                        0x0000
322 #define  GLUT_OVERLAY                       0x0001
323
324 /*
325  * GLUT API macro definitions -- the glutGetModifiers parameters
326  */
327 #define  GLUT_ACTIVE_SHIFT                  0x0001
328 #define  GLUT_ACTIVE_CTRL                   0x0002
329 #define  GLUT_ACTIVE_ALT                    0x0004
330
331 /*
332  * GLUT API macro definitions -- the glutSetCursor parameters
333  */
334 #define  GLUT_CURSOR_RIGHT_ARROW            0x0000
335 #define  GLUT_CURSOR_LEFT_ARROW             0x0001
336 #define  GLUT_CURSOR_INFO                   0x0002
337 #define  GLUT_CURSOR_DESTROY                0x0003
338 #define  GLUT_CURSOR_HELP                   0x0004
339 #define  GLUT_CURSOR_CYCLE                  0x0005
340 #define  GLUT_CURSOR_SPRAY                  0x0006
341 #define  GLUT_CURSOR_WAIT                   0x0007
342 #define  GLUT_CURSOR_TEXT                   0x0008
343 #define  GLUT_CURSOR_CROSSHAIR              0x0009
344 #define  GLUT_CURSOR_UP_DOWN                0x000A
345 #define  GLUT_CURSOR_LEFT_RIGHT             0x000B
346 #define  GLUT_CURSOR_TOP_SIDE               0x000C
347 #define  GLUT_CURSOR_BOTTOM_SIDE            0x000D
348 #define  GLUT_CURSOR_LEFT_SIDE              0x000E
349 #define  GLUT_CURSOR_RIGHT_SIDE             0x000F
350 #define  GLUT_CURSOR_TOP_LEFT_CORNER        0x0010
351 #define  GLUT_CURSOR_TOP_RIGHT_CORNER       0x0011
352 #define  GLUT_CURSOR_BOTTOM_RIGHT_CORNER    0x0012
353 #define  GLUT_CURSOR_BOTTOM_LEFT_CORNER     0x0013
354 #define  GLUT_CURSOR_INHERIT                0x0064
355 #define  GLUT_CURSOR_NONE                   0x0065
356 #define  GLUT_CURSOR_FULL_CROSSHAIR         0x0066
357
358 /*
359  * GLUT API macro definitions -- RGB color component specification definitions
360  */
361 #define  GLUT_RED                           0x0000
362 #define  GLUT_GREEN                         0x0001
363 #define  GLUT_BLUE                          0x0002
364
365 /*
366  * GLUT API macro definitions -- additional keyboard and joystick definitions
367  */
368 #define  GLUT_KEY_REPEAT_OFF                0x0000
369 #define  GLUT_KEY_REPEAT_ON                 0x0001
370 #define  GLUT_KEY_REPEAT_DEFAULT            0x0002
371
372 #define  GLUT_JOYSTICK_BUTTON_A             0x0001
373 #define  GLUT_JOYSTICK_BUTTON_B             0x0002
374 #define  GLUT_JOYSTICK_BUTTON_C             0x0004
375 #define  GLUT_JOYSTICK_BUTTON_D             0x0008
376
377 /*
378  * GLUT API macro definitions -- game mode definitions
379  */
380 #define  GLUT_GAME_MODE_ACTIVE              0x0000
381 #define  GLUT_GAME_MODE_POSSIBLE            0x0001
382 #define  GLUT_GAME_MODE_WIDTH               0x0002
383 #define  GLUT_GAME_MODE_HEIGHT              0x0003
384 #define  GLUT_GAME_MODE_PIXEL_DEPTH         0x0004
385 #define  GLUT_GAME_MODE_REFRESH_RATE        0x0005
386 #define  GLUT_GAME_MODE_DISPLAY_CHANGED     0x0006
387
388 /*
389  * Initialization functions, see fglut_init.c
390  */
391 FGAPI void    FGAPIENTRY glutInit( int* pargc, char** argv );
392 FGAPI void    FGAPIENTRY glutInitWindowPosition( int x, int y );
393 FGAPI void    FGAPIENTRY glutInitWindowSize( int width, int height );
394 FGAPI void    FGAPIENTRY glutInitDisplayMode( unsigned int displayMode );
395 FGAPI void    FGAPIENTRY glutInitDisplayString( const char* displayMode );
396
397 /*
398  * Process loop function, see freeglut_main.c
399  */
400 FGAPI void    FGAPIENTRY glutMainLoop( void );
401
402 /*
403  * Window management functions, see freeglut_window.c
404  */
405 FGAPI int     FGAPIENTRY glutCreateWindow( const char* title );
406 FGAPI int     FGAPIENTRY glutCreateSubWindow( int window, int x, int y, int width, int height );
407 FGAPI void    FGAPIENTRY glutDestroyWindow( int window );
408 FGAPI void    FGAPIENTRY glutSetWindow( int window );
409 FGAPI int     FGAPIENTRY glutGetWindow( void );
410 FGAPI void    FGAPIENTRY glutSetWindowTitle( const char* title );
411 FGAPI void    FGAPIENTRY glutSetIconTitle( const char* title );
412 FGAPI void    FGAPIENTRY glutReshapeWindow( int width, int height );
413 FGAPI void    FGAPIENTRY glutPositionWindow( int x, int y );
414 FGAPI void    FGAPIENTRY glutShowWindow( void );
415 FGAPI void    FGAPIENTRY glutHideWindow( void );
416 FGAPI void    FGAPIENTRY glutIconifyWindow( void );
417 FGAPI void    FGAPIENTRY glutPushWindow( void );
418 FGAPI void    FGAPIENTRY glutPopWindow( void );
419 FGAPI void    FGAPIENTRY glutFullScreen( void );
420
421 /*
422  * Display-connected functions, see freeglut_display.c
423  */
424 FGAPI void    FGAPIENTRY glutPostWindowRedisplay( int window );
425 FGAPI void    FGAPIENTRY glutPostRedisplay( void );
426 FGAPI void    FGAPIENTRY glutSwapBuffers( void );
427
428 /*
429  * Mouse cursor functions, see freeglut_cursor.c
430  */
431 FGAPI void    FGAPIENTRY glutWarpPointer( int x, int y );
432 FGAPI void    FGAPIENTRY glutSetCursor( int cursor );
433
434 /*
435  * Overlay stuff, see freeglut_overlay.c
436  */
437 FGAPI void    FGAPIENTRY glutEstablishOverlay( void );
438 FGAPI void    FGAPIENTRY glutRemoveOverlay( void );
439 FGAPI void    FGAPIENTRY glutUseLayer( GLenum layer );
440 FGAPI void    FGAPIENTRY glutPostOverlayRedisplay( void );
441 FGAPI void    FGAPIENTRY glutPostWindowOverlayRedisplay( int window );
442 FGAPI void    FGAPIENTRY glutShowOverlay( void );
443 FGAPI void    FGAPIENTRY glutHideOverlay( void );
444
445 /*
446  * Menu stuff, see freeglut_menu.c
447  */
448 FGAPI int     FGAPIENTRY glutCreateMenu( void (* callback)( int menu ) );
449 FGAPI void    FGAPIENTRY glutDestroyMenu( int menu );
450 FGAPI int     FGAPIENTRY glutGetMenu( void );
451 FGAPI void    FGAPIENTRY glutSetMenu( int menu );
452 FGAPI void    FGAPIENTRY glutAddMenuEntry( const char* label, int value );
453 FGAPI void    FGAPIENTRY glutAddSubMenu( const char* label, int subMenu );
454 FGAPI void    FGAPIENTRY glutChangeToMenuEntry( int item, const char* label, int value );
455 FGAPI void    FGAPIENTRY glutChangeToSubMenu( int item, const char* label, int value );
456 FGAPI void    FGAPIENTRY glutRemoveMenuItem( int item );
457 FGAPI void    FGAPIENTRY glutAttachMenu( int button );
458 FGAPI void    FGAPIENTRY glutDetachMenu( int button );
459
460 /*
461  * Global callback functions, see freeglut_callbacks.c
462  */
463 FGAPI void    FGAPIENTRY glutTimerFunc( unsigned int time, void (* callback)( int ), int value );
464 FGAPI void    FGAPIENTRY glutIdleFunc( void (* callback)( void ) );
465
466 /*
467  * Window-specific callback functions, see freeglut_callbacks.c
468  */
469 FGAPI void    FGAPIENTRY glutKeyboardFunc( void (* callback)( unsigned char, int, int ) );
470 FGAPI void    FGAPIENTRY glutSpecialFunc( void (* callback)( int, int, int ) );
471 FGAPI void    FGAPIENTRY glutReshapeFunc( void (* callback)( int, int ) );
472 FGAPI void    FGAPIENTRY glutVisibilityFunc( void (* callback)( int ) );
473 FGAPI void    FGAPIENTRY glutDisplayFunc( void (* callback)( void ) );
474 FGAPI void    FGAPIENTRY glutMouseFunc( void (* callback)( int, int, int, int ) );
475 FGAPI void    FGAPIENTRY glutMotionFunc( void (* callback)( int, int ) );
476 FGAPI void    FGAPIENTRY glutPassiveMotionFunc( void (* callback)( int, int ) );
477 FGAPI void    FGAPIENTRY glutEntryFunc( void (* callback)( int ) );
478
479 FGAPI void    FGAPIENTRY glutKeyboardUpFunc( void (* callback)( unsigned char, int, int ) );
480 FGAPI void    FGAPIENTRY glutSpecialUpFunc( void (* callback)( int, int, int ) );
481 FGAPI void    FGAPIENTRY glutJoystickFunc( void (* callback)( unsigned int, int, int, int ), int pollInterval );
482 FGAPI void    FGAPIENTRY glutMenuStateFunc( void (* callback)( int ) );
483 FGAPI void    FGAPIENTRY glutMenuStatusFunc( void (* callback)( int, int, int ) );
484 FGAPI void    FGAPIENTRY glutOverlayDisplayFunc( void (* callback)( void ) );
485 FGAPI void    FGAPIENTRY glutWindowStatusFunc( void (* callback)( int ) );
486
487 FGAPI void    FGAPIENTRY glutSpaceballMotionFunc( void (* callback)( int, int, int ) );
488 FGAPI void    FGAPIENTRY glutSpaceballRotateFunc( void (* callback)( int, int, int ) );
489 FGAPI void    FGAPIENTRY glutSpaceballButtonFunc( void (* callback)( int, int ) );
490 FGAPI void    FGAPIENTRY glutButtonBoxFunc( void (* callback)( int, int ) );
491 FGAPI void    FGAPIENTRY glutDialsFunc( void (* callback)( int, int ) );
492 FGAPI void    FGAPIENTRY glutTabletMotionFunc( void (* callback)( int, int ) );
493 FGAPI void    FGAPIENTRY glutTabletButtonFunc( void (* callback)( int, int, int, int ) );
494
495 /*
496  * State setting and retrieval functions, see freeglut_state.c
497  */
498 FGAPI int     FGAPIENTRY glutGet( GLenum query );
499 FGAPI int     FGAPIENTRY glutDeviceGet( GLenum query );
500 FGAPI int     FGAPIENTRY glutGetModifiers( void );
501 FGAPI int     FGAPIENTRY glutLayerGet( GLenum query );
502
503 /*
504  * Font stuff, see freeglut_font.c
505  */
506 FGAPI void    FGAPIENTRY glutBitmapCharacter( void* font, int character );
507 FGAPI int     FGAPIENTRY glutBitmapWidth( void* font, int character );
508 FGAPI void    FGAPIENTRY glutStrokeCharacter( void* font, int character );
509 FGAPI int     FGAPIENTRY glutStrokeWidth( void* font, int character );
510 FGAPI int     FGAPIENTRY glutBitmapLength( void* font, const unsigned char* string );
511 FGAPI int     FGAPIENTRY glutStrokeLength( void* font, const unsigned char* string );
512
513 /*
514  * Geometry functions, see freeglut_geometry.c
515  */
516 FGAPI void    FGAPIENTRY glutWireCube( GLdouble size );
517 FGAPI void    FGAPIENTRY glutSolidCube( GLdouble size );
518 FGAPI void    FGAPIENTRY glutWireSphere( GLdouble radius, GLint slices, GLint stacks );
519 FGAPI void    FGAPIENTRY glutSolidSphere( GLdouble radius, GLint slices, GLint stacks );
520 FGAPI void    FGAPIENTRY glutWireCone( GLdouble base, GLdouble height, GLint slices, GLint stacks );
521 FGAPI void    FGAPIENTRY glutSolidCone( GLdouble base, GLdouble height, GLint slices, GLint stacks );
522
523 FGAPI void    FGAPIENTRY glutWireTorus( GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint rings );
524 FGAPI void    FGAPIENTRY glutSolidTorus( GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint rings );
525 FGAPI void    FGAPIENTRY glutWireDodecahedron( void );
526 FGAPI void    FGAPIENTRY glutSolidDodecahedron( void );
527 FGAPI void    FGAPIENTRY glutWireOctahedron( void );
528 FGAPI void    FGAPIENTRY glutSolidOctahedron( void );
529 FGAPI void    FGAPIENTRY glutWireTetrahedron( void );
530 FGAPI void    FGAPIENTRY glutSolidTetrahedron( void );
531 FGAPI void    FGAPIENTRY glutWireIcosahedron( void );
532 FGAPI void    FGAPIENTRY glutSolidIcosahedron( void );
533
534 /*
535  * Teapot rendering functions, found in freeglut_teapot.c
536  */
537 FGAPI void    FGAPIENTRY glutWireTeapot( GLdouble size );
538 FGAPI void    FGAPIENTRY glutSolidTeapot( GLdouble size );
539
540 /*
541  * Game mode functions, see freeglut_gamemode.c
542  */
543 FGAPI void    FGAPIENTRY glutGameModeString( const char* string );
544 FGAPI int     FGAPIENTRY glutEnterGameMode( void );
545 FGAPI void    FGAPIENTRY glutLeaveGameMode( void );
546 FGAPI int     FGAPIENTRY glutGameModeGet( GLenum query );
547
548 /*
549  * Video resize functions, see freeglut_videoresize.c
550  */
551 FGAPI int     FGAPIENTRY glutVideoResizeGet( GLenum query );
552 FGAPI void    FGAPIENTRY glutSetupVideoResizing( void );
553 FGAPI void    FGAPIENTRY glutStopVideoResizing( void );
554 FGAPI void    FGAPIENTRY glutVideoResize( int x, int y, int width, int height );
555 FGAPI void    FGAPIENTRY glutVideoPan( int x, int y, int width, int height );
556
557 /*
558  * Colormap functions, see freeglut_misc.c
559  */
560 FGAPI void    FGAPIENTRY glutSetColor( int color, GLfloat red, GLfloat green, GLfloat blue );
561 FGAPI GLfloat FGAPIENTRY glutGetColor( int color, int component );
562 FGAPI void    FGAPIENTRY glutCopyColormap( int window );
563
564 /*
565  * Misc keyboard and joystick functions, see freeglut_misc.c
566  */
567 FGAPI void    FGAPIENTRY glutIgnoreKeyRepeat( int ignore );
568 FGAPI void    FGAPIENTRY glutSetKeyRepeat( int repeatMode );
569 FGAPI void    FGAPIENTRY glutForceJoystickFunc( void );
570
571 /*
572  * Misc functions, see freeglut_misc.c
573  */
574 FGAPI int     FGAPIENTRY glutExtensionSupported( const char* extension );
575 FGAPI void    FGAPIENTRY glutReportErrors( void );
576
577 #ifdef __cplusplus
578     }
579 #endif
580
581 /*** END OF FILE ***/
582
583 #endif /* __FREEGLUT_STD_H__ */
584