Changeset 3079 for trunk/src/opengl/glut/glutint.h
- Timestamp:
- Mar 11, 2000, 10:05:07 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glut/glutint.h
r3022 r3079 1 /* $Id: glutint.h,v 1. 4 2000-03-05 10:19:38jeroen Exp $ */1 /* $Id: glutint.h,v 1.5 2000-03-11 09:05:05 jeroen Exp $ */ 2 2 #ifndef __glutint_h__ 3 3 #define __glutint_h__ … … 253 253 254 254 /* GLUT function types */ 255 typedef void (* CDECLGLUTdisplayCB) (void);256 typedef void (* CDECLGLUTreshapeCB) (int, int);257 typedef void (* CDECLGLUTkeyboardCB) (unsigned char, int, int);258 typedef void (* CDECLGLUTmouseCB) (int, int, int, int);259 typedef void (* CDECLGLUTmotionCB) (int, int);260 typedef void (* CDECLGLUTpassiveCB) (int, int);261 typedef void (* CDECLGLUTentryCB) (int);262 typedef void (* CDECLGLUTvisibilityCB) (int);263 typedef void (* CDECLGLUTwindowStatusCB) (int);264 typedef void (* CDECLGLUTidleCB) (void);265 typedef void (* CDECLGLUTtimerCB) (int);266 typedef void (* CDECLGLUTmenuStateCB) (int); /* DEPRICATED. */267 typedef void (* CDECLGLUTmenuStatusCB) (int, int, int);268 typedef void (* CDECLGLUTselectCB) (int);269 typedef void (* CDECLGLUTspecialCB) (int, int, int);270 typedef void (* CDECLGLUTspaceMotionCB) (int, int, int);271 typedef void (* CDECLGLUTspaceRotateCB) (int, int, int);272 typedef void (* CDECLGLUTspaceButtonCB) (int, int);273 typedef void (* CDECLGLUTdialsCB) (int, int);274 typedef void (* CDECLGLUTbuttonBoxCB) (int, int);275 typedef void (* CDECLGLUTtabletMotionCB) (int, int);276 typedef void (* CDECLGLUTtabletButtonCB) (int, int, int, int);277 typedef void (* CDECLGLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);255 typedef void (* GLCALLBACK GLUTdisplayCB) (void); 256 typedef void (* GLCALLBACK GLUTreshapeCB) (int, int); 257 typedef void (* GLCALLBACK GLUTkeyboardCB) (unsigned char, int, int); 258 typedef void (* GLCALLBACK GLUTmouseCB) (int, int, int, int); 259 typedef void (* GLCALLBACK GLUTmotionCB) (int, int); 260 typedef void (* GLCALLBACK GLUTpassiveCB) (int, int); 261 typedef void (* GLCALLBACK GLUTentryCB) (int); 262 typedef void (* GLCALLBACK GLUTvisibilityCB) (int); 263 typedef void (* GLCALLBACK GLUTwindowStatusCB) (int); 264 typedef void (* GLCALLBACK GLUTidleCB) (void); 265 typedef void (* GLCALLBACK GLUTtimerCB) (int); 266 typedef void (* GLCALLBACK GLUTmenuStateCB) (int); /* DEPRICATED. */ 267 typedef void (* GLCALLBACK GLUTmenuStatusCB) (int, int, int); 268 typedef void (* GLCALLBACK GLUTselectCB) (int); 269 typedef void (* GLCALLBACK GLUTspecialCB) (int, int, int); 270 typedef void (* GLCALLBACK GLUTspaceMotionCB) (int, int, int); 271 typedef void (* GLCALLBACK GLUTspaceRotateCB) (int, int, int); 272 typedef void (* GLCALLBACK GLUTspaceButtonCB) (int, int); 273 typedef void (* GLCALLBACK GLUTdialsCB) (int, int); 274 typedef void (* GLCALLBACK GLUTbuttonBoxCB) (int, int); 275 typedef void (* GLCALLBACK GLUTtabletMotionCB) (int, int); 276 typedef void (* GLCALLBACK GLUTtabletButtonCB) (int, int, int, int); 277 typedef void (* GLCALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z); 278 278 #ifdef SUPPORT_FORTRAN 279 279 typedef void (*GLUTdisplayFCB) (void); … … 664 664 extern GLUTmenuItem *__glutItemSelected; 665 665 extern GLUTmenu **__glutMenuList; 666 extern void (* CDECL__glutMenuStatusFunc) (int, int, int);666 extern void (* GLCALLBACK __glutMenuStatusFunc) (int, int, int); 667 667 extern void __glutMenuModificationError(void); 668 668 extern void __glutSetMenuItem(GLUTmenuItem * item, … … 746 746 extern void __glutReshapeFunc(GLUTreshapeCB reshapeFunc, 747 747 int callingConvention); 748 extern void CDECL__glutDefaultReshape(int, int);748 extern void GLCALLBACK __glutDefaultReshape(int, int); 749 749 extern GLUTwindow *__glutCreateWindow( 750 750 GLUTwindow * parent,
Note:
See TracChangeset
for help on using the changeset viewer.