Keyboard.h revision 706f2543
1/* 2 3Copyright 1993 by Davor Matic 4 5Permission to use, copy, modify, distribute, and sell this software 6and its documentation for any purpose is hereby granted without fee, 7provided that the above copyright notice appear in all copies and that 8both that copyright notice and this permission notice appear in 9supporting documentation. Davor Matic makes no representations about 10the suitability of this software for any purpose. It is provided "as 11is" without express or implied warranty. 12 13*/ 14 15#ifndef XNESTKEYBOARD_H 16#define XNESTKEYBOARD_H 17 18#define XNEST_KEYBOARD_EVENT_MASK \ 19 (KeyPressMask | KeyReleaseMask | FocusChangeMask | KeymapStateMask) 20 21extern DeviceIntPtr xnestKeyboardDevice; 22 23void xnestBell(int volume, DeviceIntPtr pDev, pointer ctrl, int cls); 24void xnestChangeKeyboardControl(DeviceIntPtr pDev, KeybdCtrl *ctrl); 25int xnestKeyboardProc(DeviceIntPtr pDev, int onoff); 26void xnestUpdateModifierState(unsigned int state); 27 28#endif /* XNESTKEYBOARD_H */ 29