Forgot to wrap the fgGetXModifiers() in a #if.  Fixed.


git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@289 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
rkrolib 2003-11-03 10:56:48 +00:00
parent cced36cf2b
commit fa26d7b700

View File

@ -431,6 +431,7 @@ static void fgSleepForEvents( void )
#endif #endif
} }
#if TARGET_HOST_UNIX_X11
/* /*
* Returns GLUT modifier mask for an XEvent. * Returns GLUT modifier mask for an XEvent.
*/ */
@ -447,6 +448,7 @@ int fgGetXModifiers(XEvent *event)
return ret; return ret;
} }
#endif
/* -- INTERFACE FUNCTIONS -------------------------------------------------- */ /* -- INTERFACE FUNCTIONS -------------------------------------------------- */