Changeset 3086 for trunk/src/opengl/glut/glutint.h
- Timestamp:
- Mar 11, 2000, 6:07:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glut/glutint.h
r3083 r3086 1 /* $Id: glutint.h,v 1. 6 2000-03-11 15:07:47sandervl Exp $ */1 /* $Id: glutint.h,v 1.7 2000-03-11 17:07:46 sandervl Exp $ */ 2 2 #ifndef __glutint_h__ 3 3 #define __glutint_h__ … … 249 249 250 250 /* GLUT function types */ 251 typedef void (* GL CALLBACK GLUTdisplayCB) (void);252 typedef void (* GL CALLBACK GLUTreshapeCB) (int, int);253 typedef void (* GL CALLBACK GLUTkeyboardCB) (unsigned char, int, int);254 typedef void (* GL CALLBACK GLUTmouseCB) (int, int, int, int);255 typedef void (* GL CALLBACK GLUTmotionCB) (int, int);256 typedef void (* GL CALLBACK GLUTpassiveCB) (int, int);257 typedef void (* GL CALLBACK GLUTentryCB) (int);258 typedef void (* GL CALLBACK GLUTvisibilityCB) (int);259 typedef void (* GL CALLBACK GLUTwindowStatusCB) (int);260 typedef void (* GL CALLBACK GLUTidleCB) (void);261 typedef void (* GL CALLBACK GLUTtimerCB) (int);262 typedef void (* GL CALLBACK GLUTmenuStateCB) (int); /* DEPRICATED. */263 typedef void (* GL CALLBACK GLUTmenuStatusCB) (int, int, int);264 typedef void (* GL CALLBACK GLUTselectCB) (int);265 typedef void (* GL CALLBACK GLUTspecialCB) (int, int, int);266 typedef void (* GL CALLBACK GLUTspaceMotionCB) (int, int, int);267 typedef void (* GL CALLBACK GLUTspaceRotateCB) (int, int, int);268 typedef void (* GL CALLBACK GLUTspaceButtonCB) (int, int);269 typedef void (* GL CALLBACK GLUTdialsCB) (int, int);270 typedef void (* GL CALLBACK GLUTbuttonBoxCB) (int, int);271 typedef void (* GL CALLBACK GLUTtabletMotionCB) (int, int);272 typedef void (* GL CALLBACK GLUTtabletButtonCB) (int, int, int, int);273 typedef void (* GL CALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);251 typedef void (* GLUTCALLBACK GLUTdisplayCB) (void); 252 typedef void (* GLUTCALLBACK GLUTreshapeCB) (int, int); 253 typedef void (* GLUTCALLBACK GLUTkeyboardCB) (unsigned char, int, int); 254 typedef void (* GLUTCALLBACK GLUTmouseCB) (int, int, int, int); 255 typedef void (* GLUTCALLBACK GLUTmotionCB) (int, int); 256 typedef void (* GLUTCALLBACK GLUTpassiveCB) (int, int); 257 typedef void (* GLUTCALLBACK GLUTentryCB) (int); 258 typedef void (* GLUTCALLBACK GLUTvisibilityCB) (int); 259 typedef void (* GLUTCALLBACK GLUTwindowStatusCB) (int); 260 typedef void (* GLUTCALLBACK GLUTidleCB) (void); 261 typedef void (* GLUTCALLBACK GLUTtimerCB) (int); 262 typedef void (* GLUTCALLBACK GLUTmenuStateCB) (int); /* DEPRICATED. */ 263 typedef void (* GLUTCALLBACK GLUTmenuStatusCB) (int, int, int); 264 typedef void (* GLUTCALLBACK GLUTselectCB) (int); 265 typedef void (* GLUTCALLBACK GLUTspecialCB) (int, int, int); 266 typedef void (* GLUTCALLBACK GLUTspaceMotionCB) (int, int, int); 267 typedef void (* GLUTCALLBACK GLUTspaceRotateCB) (int, int, int); 268 typedef void (* GLUTCALLBACK GLUTspaceButtonCB) (int, int); 269 typedef void (* GLUTCALLBACK GLUTdialsCB) (int, int); 270 typedef void (* GLUTCALLBACK GLUTbuttonBoxCB) (int, int); 271 typedef void (* GLUTCALLBACK GLUTtabletMotionCB) (int, int); 272 typedef void (* GLUTCALLBACK GLUTtabletButtonCB) (int, int, int, int); 273 typedef void (* GLUTCALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z); 274 274 #ifdef SUPPORT_FORTRAN 275 275 typedef void (*GLUTdisplayFCB) (void); … … 660 660 extern GLUTmenuItem *__glutItemSelected; 661 661 extern GLUTmenu **__glutMenuList; 662 extern void (* GL CALLBACK __glutMenuStatusFunc) (int, int, int);662 extern void (* GLUTCALLBACK __glutMenuStatusFunc) (int, int, int); 663 663 extern void __glutMenuModificationError(void); 664 664 extern void __glutSetMenuItem(GLUTmenuItem * item, … … 742 742 extern void __glutReshapeFunc(GLUTreshapeCB reshapeFunc, 743 743 int callingConvention); 744 extern void GL CALLBACK __glutDefaultReshape(int, int);744 extern void GLUTCALLBACK __glutDefaultReshape(int, int); 745 745 extern GLUTwindow *__glutCreateWindow( 746 746 GLUTwindow * parent,
Note:
See TracChangeset
for help on using the changeset viewer.