Changeset 2996 for trunk/src/opengl/glut/glut_winmisc.c
- Timestamp:
- Mar 4, 2000, 8:10:18 PM (25 years ago)
- File:
-
- 1 edited
-
trunk/src/opengl/glut/glut_winmisc.c (modified) (10 diffs)
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:19jeroen Exp $ */1 /* $Id: glut_winmisc.c,v 1.3 2000-03-04 19:10:16 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994. */ 3 3 … … 20 20 21 21 /* CENTRY */ 22 void APIENTRY22 void GLAPIENTRY 23 23 glutSetWindowTitle(const char *title) 24 24 { … … 37 37 } 38 38 39 void APIENTRY39 void GLAPIENTRY 40 40 glutSetIconTitle(const char *title) 41 41 { … … 53 53 } 54 54 55 void APIENTRY55 void GLAPIENTRY 56 56 glutPositionWindow(int x, int y) 57 57 { … … 63 63 } 64 64 65 void APIENTRY65 void GLAPIENTRY 66 66 glutReshapeWindow(int w, int h) 67 67 { 68 WriteLog("glutReshapeWindow (glut_winmisc)\n"); 68 69 IGNORE_IN_GAME_MODE(); 69 70 if (w <= 0 || h <= 0) … … 76 77 } 77 78 78 void APIENTRY79 void GLAPIENTRY 79 80 glutPopWindow(void) 80 81 { … … 85 86 } 86 87 87 void APIENTRY88 void GLAPIENTRY 88 89 glutPushWindow(void) 89 90 { … … 94 95 } 95 96 96 void APIENTRY97 void GLAPIENTRY 97 98 glutIconifyWindow(void) 98 99 { … … 103 104 } 104 105 105 void APIENTRY106 void GLAPIENTRY 106 107 glutShowWindow(void) 107 108 { … … 111 112 } 112 113 113 void APIENTRY114 void GLAPIENTRY 114 115 glutHideWindow(void) 115 116 {
Note:
See TracChangeset
for help on using the changeset viewer.
