From f2f5f4f8842b984d58f8a24f0a6c3c150f53baad Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 12 Feb 2003 23:56:21 +0000 Subject: replace APIENTRY with GLUTAPIENTRY to be consistant with glut.h --- src/glut/glx/glut_winmisc.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/glut/glx/glut_winmisc.c') diff --git a/src/glut/glx/glut_winmisc.c b/src/glut/glx/glut_winmisc.c index 60d5a073a8..0fc4c805f2 100644 --- a/src/glut/glx/glut_winmisc.c +++ b/src/glut/glx/glut_winmisc.c @@ -23,7 +23,7 @@ #include "glutint.h" /* CENTRY */ -void APIENTRY +void GLUTAPIENTRY glutSetWindowTitle(const char *title) { XTextProperty textprop; @@ -39,7 +39,7 @@ glutSetWindowTitle(const char *title) XFlush(__glutDisplay); } -void APIENTRY +void GLUTAPIENTRY glutSetIconTitle(const char *title) { XTextProperty textprop; @@ -55,7 +55,7 @@ glutSetIconTitle(const char *title) XFlush(__glutDisplay); } -void APIENTRY +void GLUTAPIENTRY glutPositionWindow(int x, int y) { IGNORE_IN_GAME_MODE(); @@ -65,7 +65,7 @@ glutPositionWindow(int x, int y) __glutPutOnWorkList(__glutCurrentWindow, GLUT_CONFIGURE_WORK); } -void APIENTRY +void GLUTAPIENTRY glutReshapeWindow(int w, int h) { IGNORE_IN_GAME_MODE(); @@ -78,7 +78,7 @@ glutReshapeWindow(int w, int h) __glutPutOnWorkList(__glutCurrentWindow, GLUT_CONFIGURE_WORK); } -void APIENTRY +void GLUTAPIENTRY glutPopWindow(void) { IGNORE_IN_GAME_MODE(); @@ -87,7 +87,7 @@ glutPopWindow(void) __glutPutOnWorkList(__glutCurrentWindow, GLUT_CONFIGURE_WORK); } -void APIENTRY +void GLUTAPIENTRY glutPushWindow(void) { IGNORE_IN_GAME_MODE(); @@ -96,7 +96,7 @@ glutPushWindow(void) __glutPutOnWorkList(__glutCurrentWindow, GLUT_CONFIGURE_WORK); } -void APIENTRY +void GLUTAPIENTRY glutIconifyWindow(void) { IGNORE_IN_GAME_MODE(); @@ -105,7 +105,7 @@ glutIconifyWindow(void) __glutPutOnWorkList(__glutCurrentWindow, GLUT_MAP_WORK); } -void APIENTRY +void GLUTAPIENTRY glutShowWindow(void) { IGNORE_IN_GAME_MODE(); @@ -113,7 +113,7 @@ glutShowWindow(void) __glutPutOnWorkList(__glutCurrentWindow, GLUT_MAP_WORK); } -void APIENTRY +void GLUTAPIENTRY glutHideWindow(void) { IGNORE_IN_GAME_MODE(); -- cgit v1.2.3