Ignore:
Timestamp:
Mar 4, 2000, 8:10:18 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/glut/glut_winmisc.c

    r2689 r2996  
    1 /* $Id: glut_winmisc.c,v 1.2 2000-02-09 08:46:19 jeroen Exp $ */
     1/* $Id: glut_winmisc.c,v 1.3 2000-03-04 19:10:16 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994.  */
    33
     
    2020
    2121/* CENTRY */
    22 void APIENTRY
     22void GLAPIENTRY
    2323glutSetWindowTitle(const char *title)
    2424{
     
    3737}
    3838
    39 void APIENTRY
     39void GLAPIENTRY
    4040glutSetIconTitle(const char *title)
    4141{
     
    5353}
    5454
    55 void APIENTRY
     55void GLAPIENTRY
    5656glutPositionWindow(int x, int y)
    5757{
     
    6363}
    6464
    65 void APIENTRY
     65void GLAPIENTRY
    6666glutReshapeWindow(int w, int h)
    6767{
     68  WriteLog("glutReshapeWindow (glut_winmisc)\n");
    6869  IGNORE_IN_GAME_MODE();
    6970  if (w <= 0 || h <= 0)
     
    7677}
    7778
    78 void APIENTRY
     79void GLAPIENTRY
    7980glutPopWindow(void)
    8081{
     
    8586}
    8687
    87 void APIENTRY
     88void GLAPIENTRY
    8889glutPushWindow(void)
    8990{
     
    9495}
    9596
    96 void APIENTRY
     97void GLAPIENTRY
    9798glutIconifyWindow(void)
    9899{
     
    103104}
    104105
    105 void APIENTRY
     106void GLAPIENTRY
    106107glutShowWindow(void)
    107108{
     
    111112}
    112113
    113 void APIENTRY
     114void GLAPIENTRY
    114115glutHideWindow(void)
    115116{
Note: See TracChangeset for help on using the changeset viewer.