lkeysym.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* lkeysym.h - for any undefined keys
  2. Copyright (C) 1996, 1997 Paul Sheer
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. #include <X11/keysym.h>
  16. #ifndef XK_Page_Up
  17. #define XK_Page_Up XK_Prior
  18. #endif
  19. #ifndef XK_Page_Down
  20. #define XK_Page_Down XK_Next
  21. #endif
  22. #ifndef XK_KP_Page_Up
  23. #define XK_KP_Page_Up XK_KP_Prior
  24. #endif
  25. #ifndef XK_KP_Page_Down
  26. #define XK_KP_Page_Down XK_KP_Next
  27. #endif
  28. #ifndef XK_ISO_Left_Tab
  29. #define XK_ISO_Left_Tab 0xFE20
  30. #endif