Changeset 2996 for trunk/src/opengl/glut/glutint.h
- Timestamp:
- Mar 4, 2000, 8:10:18 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glut/glutint.h
r2689 r2996 1 /* $Id: glutint.h,v 1. 2 2000-02-09 08:46:19jeroen Exp $ */1 /* $Id: glutint.h,v 1.3 2000-03-04 19:10:16 jeroen Exp $ */ 2 2 #ifndef __glutint_h__ 3 3 #define __glutint_h__ … … 253 253 254 254 /* GLUT function types */ 255 typedef void (* APIENTRY GLUTdisplayCB) (void);256 typedef void (* APIENTRY GLUTreshapeCB) (int, int);257 typedef void (* APIENTRY GLUTkeyboardCB) (unsigned char, int, int);258 typedef void (* APIENTRY GLUTmouseCB) (int, int, int, int);259 typedef void (* APIENTRY GLUTmotionCB) (int, int);260 typedef void (* APIENTRY GLUTpassiveCB) (int, int);261 typedef void (* APIENTRY GLUTentryCB) (int);262 typedef void (* APIENTRY GLUTvisibilityCB) (int);263 typedef void (* APIENTRY GLUTwindowStatusCB) (int);264 typedef void (* APIENTRY GLUTidleCB) (void);265 typedef void (* APIENTRY GLUTtimerCB) (int);266 typedef void (* APIENTRY GLUTmenuStateCB) (int);/* DEPRICATED. */267 typedef void (* APIENTRY GLUTmenuStatusCB) (int, int, int);268 typedef void (* APIENTRY GLUTselectCB) (int);269 typedef void (* APIENTRY GLUTspecialCB) (int, int, int);270 typedef void (* APIENTRY GLUTspaceMotionCB) (int, int, int);271 typedef void (* APIENTRY GLUTspaceRotateCB) (int, int, int);272 typedef void (* APIENTRY GLUTspaceButtonCB) (int, int);273 typedef void (* APIENTRY GLUTdialsCB) (int, int);274 typedef void (* APIENTRY GLUTbuttonBoxCB) (int, int);275 typedef void (* APIENTRY GLUTtabletMotionCB) (int, int);276 typedef void (* APIENTRY GLUTtabletButtonCB) (int, int, int, int);277 typedef void (* APIENTRY GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);255 typedef void (* GLAPIENTRY GLUTdisplayCB) (void); 256 typedef void (* GLAPIENTRY GLUTreshapeCB) (int, int); 257 typedef void (* GLAPIENTRY GLUTkeyboardCB) (unsigned char, int, int); 258 typedef void (* GLAPIENTRY GLUTmouseCB) (int, int, int, int); 259 typedef void (* GLAPIENTRY GLUTmotionCB) (int, int); 260 typedef void (* GLAPIENTRY GLUTpassiveCB) (int, int); 261 typedef void (* GLAPIENTRY GLUTentryCB) (int); 262 typedef void (* GLAPIENTRY GLUTvisibilityCB) (int); 263 typedef void (* GLAPIENTRY GLUTwindowStatusCB) (int); 264 typedef void (* GLAPIENTRY GLUTidleCB) (void); 265 typedef void (* GLAPIENTRY GLUTtimerCB) (int); 266 typedef void (* GLAPIENTRY GLUTmenuStateCB) (int); /* DEPRICATED. */ 267 typedef void (* GLAPIENTRY GLUTmenuStatusCB) (int, int, int); 268 typedef void (* GLAPIENTRY GLUTselectCB) (int); 269 typedef void (* GLAPIENTRY GLUTspecialCB) (int, int, int); 270 typedef void (* GLAPIENTRY GLUTspaceMotionCB) (int, int, int); 271 typedef void (* GLAPIENTRY GLUTspaceRotateCB) (int, int, int); 272 typedef void (* GLAPIENTRY GLUTspaceButtonCB) (int, int); 273 typedef void (* GLAPIENTRY GLUTdialsCB) (int, int); 274 typedef void (* GLAPIENTRY GLUTbuttonBoxCB) (int, int); 275 typedef void (* GLAPIENTRY GLUTtabletMotionCB) (int, int); 276 typedef void (* GLAPIENTRY GLUTtabletButtonCB) (int, int, int, int); 277 typedef void (* GLAPIENTRY 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 (* APIENTRY __glutMenuStatusFunc) (int, int, int);666 extern void (* GLAPIENTRY __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 APIENTRY __glutDefaultReshape(int, int);748 extern void GLAPIENTRY __glutDefaultReshape(int, int); 749 749 extern GLUTwindow *__glutCreateWindow( 750 750 GLUTwindow * parent,
Note:
See TracChangeset
for help on using the changeset viewer.