Ignore:
Timestamp:
Mar 11, 2000, 6:07:46 PM (25 years ago)
Author:
sandervl
Message:

update

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:47 sandervl Exp $ */
     1/* $Id: glutint.h,v 1.7 2000-03-11 17:07:46 sandervl Exp $ */
    22#ifndef __glutint_h__
    33#define __glutint_h__
     
    249249
    250250/* GLUT  function types */
    251 typedef void (* GLCALLBACK GLUTdisplayCB) (void);
    252 typedef void (* GLCALLBACK GLUTreshapeCB) (int, int);
    253 typedef void (* GLCALLBACK GLUTkeyboardCB) (unsigned char, int, int);
    254 typedef void (* GLCALLBACK GLUTmouseCB) (int, int, int, int);
    255 typedef void (* GLCALLBACK GLUTmotionCB) (int, int);
    256 typedef void (* GLCALLBACK GLUTpassiveCB) (int, int);
    257 typedef void (* GLCALLBACK GLUTentryCB) (int);
    258 typedef void (* GLCALLBACK GLUTvisibilityCB) (int);
    259 typedef void (* GLCALLBACK GLUTwindowStatusCB) (int);
    260 typedef void (* GLCALLBACK GLUTidleCB) (void);
    261 typedef void (* GLCALLBACK GLUTtimerCB) (int);
    262 typedef void (* GLCALLBACK GLUTmenuStateCB) (int);  /* DEPRICATED.              */
    263 typedef void (* GLCALLBACK GLUTmenuStatusCB) (int, int, int);
    264 typedef void (* GLCALLBACK GLUTselectCB) (int);
    265 typedef void (* GLCALLBACK GLUTspecialCB) (int, int, int);
    266 typedef void (* GLCALLBACK GLUTspaceMotionCB) (int, int, int);
    267 typedef void (* GLCALLBACK GLUTspaceRotateCB) (int, int, int);
    268 typedef void (* GLCALLBACK GLUTspaceButtonCB) (int, int);
    269 typedef void (* GLCALLBACK GLUTdialsCB) (int, int);
    270 typedef void (* GLCALLBACK GLUTbuttonBoxCB) (int, int);
    271 typedef void (* GLCALLBACK GLUTtabletMotionCB) (int, int);
    272 typedef void (* GLCALLBACK GLUTtabletButtonCB) (int, int, int, int);
    273 typedef void (* GLCALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);
     251typedef void (* GLUTCALLBACK GLUTdisplayCB) (void);
     252typedef void (* GLUTCALLBACK GLUTreshapeCB) (int, int);
     253typedef void (* GLUTCALLBACK GLUTkeyboardCB) (unsigned char, int, int);
     254typedef void (* GLUTCALLBACK GLUTmouseCB) (int, int, int, int);
     255typedef void (* GLUTCALLBACK GLUTmotionCB) (int, int);
     256typedef void (* GLUTCALLBACK GLUTpassiveCB) (int, int);
     257typedef void (* GLUTCALLBACK GLUTentryCB) (int);
     258typedef void (* GLUTCALLBACK GLUTvisibilityCB) (int);
     259typedef void (* GLUTCALLBACK GLUTwindowStatusCB) (int);
     260typedef void (* GLUTCALLBACK GLUTidleCB) (void);
     261typedef void (* GLUTCALLBACK GLUTtimerCB) (int);
     262typedef void (* GLUTCALLBACK GLUTmenuStateCB) (int);  /* DEPRICATED.              */
     263typedef void (* GLUTCALLBACK GLUTmenuStatusCB) (int, int, int);
     264typedef void (* GLUTCALLBACK GLUTselectCB) (int);
     265typedef void (* GLUTCALLBACK GLUTspecialCB) (int, int, int);
     266typedef void (* GLUTCALLBACK GLUTspaceMotionCB) (int, int, int);
     267typedef void (* GLUTCALLBACK GLUTspaceRotateCB) (int, int, int);
     268typedef void (* GLUTCALLBACK GLUTspaceButtonCB) (int, int);
     269typedef void (* GLUTCALLBACK GLUTdialsCB) (int, int);
     270typedef void (* GLUTCALLBACK GLUTbuttonBoxCB) (int, int);
     271typedef void (* GLUTCALLBACK GLUTtabletMotionCB) (int, int);
     272typedef void (* GLUTCALLBACK GLUTtabletButtonCB) (int, int, int, int);
     273typedef void (* GLUTCALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);
    274274#ifdef SUPPORT_FORTRAN
    275275typedef void (*GLUTdisplayFCB) (void);
     
    660660extern GLUTmenuItem *__glutItemSelected;
    661661extern GLUTmenu **__glutMenuList;
    662 extern void (* GLCALLBACK __glutMenuStatusFunc) (int, int, int);
     662extern void (* GLUTCALLBACK __glutMenuStatusFunc) (int, int, int);
    663663extern void __glutMenuModificationError(void);
    664664extern void __glutSetMenuItem(GLUTmenuItem * item,
     
    742742extern void __glutReshapeFunc(GLUTreshapeCB reshapeFunc,
    743743  int callingConvention);
    744 extern void  GLCALLBACK __glutDefaultReshape(int, int);
     744extern void  GLUTCALLBACK __glutDefaultReshape(int, int);
    745745extern GLUTwindow *__glutCreateWindow(
    746746  GLUTwindow * parent,
Note: See TracChangeset for help on using the changeset viewer.