From: curt Date: Tue, 5 Jun 2001 22:11:25 +0000 (+0000) Subject: - moved declarations of GLUTkey, GLUTkeyup, GLUTspecialkey, and X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9b7c5c4dede6f17d28aad1b6e4f99e8d42e7afd3;p=flightgear.git - moved declarations of GLUTkey, GLUTkeyup, GLUTspecialkey, and GLUTspecialkeyup from obsolete keyboard.hxx to here --- diff --git a/src/Input/input.hxx b/src/Input/input.hxx index 167f33daa..b63dac855 100644 --- a/src/Input/input.hxx +++ b/src/Input/input.hxx @@ -283,6 +283,12 @@ private: }; +// Handle keyboard events +void GLUTkey(unsigned char k, int x, int y); +void GLUTkeyup(unsigned char k, int x, int y); +void GLUTspecialkey(int k, int x, int y); +void GLUTspecialkeyup(int k, int x, int y); + extern FGInput current_input; #endif // _CONTROLS_HXX