home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sa104os2.zip / SATHR104.ZIP / SATHER / CONTRIB / SCHNETTR / XLIB / KEY.C < prev    next >
C/C++ Source or Header  |  1994-11-28  |  623b  |  41 lines

  1. /* -*-C-*-
  2.  * access to the X Window System for Sather
  3.  * (c) 1994/11/28 - 1994/11/28 by Erik Schnetter
  4.  */
  5.  
  6. #include <X11/X.h>
  7. #include <X11/Xlib.h>
  8. #include "../../System/header.h"
  9.  
  10.  
  11.  
  12. BOOL X_IsCursorKey (KeySym keysym)
  13. {
  14.   return IsCursorKey (keysym);
  15. }
  16.  
  17. BOOL X_IsFunctionKey (KeySym keysym)
  18. {
  19.   return IsFunctionKey (keysym);
  20. }
  21.  
  22. BOOL X_IsKeypadKey (KeySym keysym)
  23. {
  24.   return IsKeypadKey (keysym);
  25. }
  26.  
  27. BOOL X_IsMiscFunctionKey (KeySym keysym)
  28. {
  29.   return IsMiscFunctionKey (keysym);
  30. }
  31.  
  32. BOOL X_IsModifierKey (KeySym keysym)
  33. {
  34.   return IsModifierKey (keysym);
  35. }
  36.  
  37. BOOL X_IsPFKey (KeySym keysym)
  38. {
  39.   return IsPFKey (keysym);
  40. }
  41.