Ignore:
Timestamp:
Mar 11, 2000, 10:05:07 AM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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:38 jeroen Exp $ */
     1/* $Id: glutint.h,v 1.5 2000-03-11 09:05:05 jeroen Exp $ */
    22#ifndef __glutint_h__
    33#define __glutint_h__
     
    253253
    254254/* GLUT  function types */
    255 typedef void (* CDECL GLUTdisplayCB) (void);
    256 typedef void (* CDECL GLUTreshapeCB) (int, int);
    257 typedef void (* CDECL GLUTkeyboardCB) (unsigned char, int, int);
    258 typedef void (* CDECL GLUTmouseCB) (int, int, int, int);
    259 typedef void (* CDECL GLUTmotionCB) (int, int);
    260 typedef void (* CDECL GLUTpassiveCB) (int, int);
    261 typedef void (* CDECL GLUTentryCB) (int);
    262 typedef void (* CDECL GLUTvisibilityCB) (int);
    263 typedef void (* CDECL GLUTwindowStatusCB) (int);
    264 typedef void (* CDECL GLUTidleCB) (void);
    265 typedef void (* CDECL GLUTtimerCB) (int);
    266 typedef void (* CDECL GLUTmenuStateCB) (int);  /* DEPRICATED.              */
    267 typedef void (* CDECL GLUTmenuStatusCB) (int, int, int);
    268 typedef void (* CDECL GLUTselectCB) (int);
    269 typedef void (* CDECL GLUTspecialCB) (int, int, int);
    270 typedef void (* CDECL GLUTspaceMotionCB) (int, int, int);
    271 typedef void (* CDECL GLUTspaceRotateCB) (int, int, int);
    272 typedef void (* CDECL GLUTspaceButtonCB) (int, int);
    273 typedef void (* CDECL GLUTdialsCB) (int, int);
    274 typedef void (* CDECL GLUTbuttonBoxCB) (int, int);
    275 typedef void (* CDECL GLUTtabletMotionCB) (int, int);
    276 typedef void (* CDECL GLUTtabletButtonCB) (int, int, int, int);
    277 typedef void (* CDECL GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);
     255typedef void (* GLCALLBACK GLUTdisplayCB) (void);
     256typedef void (* GLCALLBACK GLUTreshapeCB) (int, int);
     257typedef void (* GLCALLBACK GLUTkeyboardCB) (unsigned char, int, int);
     258typedef void (* GLCALLBACK GLUTmouseCB) (int, int, int, int);
     259typedef void (* GLCALLBACK GLUTmotionCB) (int, int);
     260typedef void (* GLCALLBACK GLUTpassiveCB) (int, int);
     261typedef void (* GLCALLBACK GLUTentryCB) (int);
     262typedef void (* GLCALLBACK GLUTvisibilityCB) (int);
     263typedef void (* GLCALLBACK GLUTwindowStatusCB) (int);
     264typedef void (* GLCALLBACK GLUTidleCB) (void);
     265typedef void (* GLCALLBACK GLUTtimerCB) (int);
     266typedef void (* GLCALLBACK GLUTmenuStateCB) (int);  /* DEPRICATED.              */
     267typedef void (* GLCALLBACK GLUTmenuStatusCB) (int, int, int);
     268typedef void (* GLCALLBACK GLUTselectCB) (int);
     269typedef void (* GLCALLBACK GLUTspecialCB) (int, int, int);
     270typedef void (* GLCALLBACK GLUTspaceMotionCB) (int, int, int);
     271typedef void (* GLCALLBACK GLUTspaceRotateCB) (int, int, int);
     272typedef void (* GLCALLBACK GLUTspaceButtonCB) (int, int);
     273typedef void (* GLCALLBACK GLUTdialsCB) (int, int);
     274typedef void (* GLCALLBACK GLUTbuttonBoxCB) (int, int);
     275typedef void (* GLCALLBACK GLUTtabletMotionCB) (int, int);
     276typedef void (* GLCALLBACK GLUTtabletButtonCB) (int, int, int, int);
     277typedef void (* GLCALLBACK GLUTjoystickCB) (unsigned int buttonMask, int x, int y, int z);
    278278#ifdef SUPPORT_FORTRAN
    279279typedef void (*GLUTdisplayFCB) (void);
     
    664664extern GLUTmenuItem *__glutItemSelected;
    665665extern GLUTmenu **__glutMenuList;
    666 extern void (* CDECL __glutMenuStatusFunc) (int, int, int);
     666extern void (* GLCALLBACK __glutMenuStatusFunc) (int, int, int);
    667667extern void __glutMenuModificationError(void);
    668668extern void __glutSetMenuItem(GLUTmenuItem * item,
     
    746746extern void __glutReshapeFunc(GLUTreshapeCB reshapeFunc,
    747747  int callingConvention);
    748 extern void  CDECL __glutDefaultReshape(int, int);
     748extern void  GLCALLBACK __glutDefaultReshape(int, int);
    749749extern GLUTwindow *__glutCreateWindow(
    750750  GLUTwindow * parent,
Note: See TracChangeset for help on using the changeset viewer.