diff options
author | Brian Paul <[email protected]> | 2003-02-12 23:56:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-02-12 23:56:21 +0000 |
commit | f2f5f4f8842b984d58f8a24f0a6c3c150f53baad (patch) | |
tree | b6ff8c1b153d8ae97ee0a4aa71a18d507a3f8f1e /src/glut/glx/glut_key.c | |
parent | 095f59a30347fea0fc804400620a64dbb7a9273c (diff) |
replace APIENTRY with GLUTAPIENTRY to be consistant with glut.h
Diffstat (limited to 'src/glut/glx/glut_key.c')
-rw-r--r-- | src/glut/glx/glut_key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glut/glx/glut_key.c b/src/glut/glx/glut_key.c index 0927f66e561..3e1f7e52c1b 100644 --- a/src/glut/glx/glut_key.c +++ b/src/glut/glx/glut_key.c @@ -10,7 +10,7 @@ #include "glutint.h" /* CENTRY */ -void APIENTRY +void GLUTAPIENTRY glutKeyboardFunc(GLUTkeyboardCB keyboardFunc) { __glutChangeWindowEventMask(KeyPressMask, @@ -18,7 +18,7 @@ glutKeyboardFunc(GLUTkeyboardCB keyboardFunc) __glutCurrentWindow->keyboard = keyboardFunc; } -void APIENTRY +void GLUTAPIENTRY glutSpecialFunc(GLUTspecialCB specialFunc) { __glutChangeWindowEventMask(KeyPressMask, |