home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1996 October / PCO_10.ISO / filesbbs / terminat.arj / SCRIPT.EXE / KEYBOARD.INC < prev    next >
Encoding:
Text File  |  1995-08-09  |  881 b   |  64 lines

  1.  
  2. %
  3. % KEYBOARD.INC
  4. %
  5. % Keycodes and keyboard functions
  6. %
  7. % Dave Wapstra
  8. % 7 Aug. 1995
  9. %
  10.  
  11. % Normal keys
  12.  
  13. Set Esc = 27
  14. Set Enter = 13
  15.  
  16. Set KeyA = 97
  17. Set KeyB = 98
  18. Set KeyC = 99
  19. Set KeyD = 100
  20. Set KeyE = 101
  21. Set KeyF = 102
  22. Set KeyG = 103
  23. Set KeyH = 104
  24. Set KeyI = 105
  25. Set KeyJ = 106
  26. Set KeyK = 107
  27. Set KeyL = 108
  28. Set KeyM = 109
  29. Set KeyN = 110
  30. Set KeyO = 111
  31. Set KeyP = 112
  32. Set KeyQ = 113
  33. Set KeyR = 114
  34. Set KeyS = 115
  35. Set KeyT = 116
  36. Set KeyU = 117
  37. Set KeyV = 118
  38. Set KeyW = 119
  39. Set KeyX = 120
  40. Set KeyY = 121
  41. Set KeyZ = 122
  42.  
  43. % Function Keys
  44.  
  45. Set KeyF1 = 315
  46. Set KeyF2 = 316
  47. Set KeyF3 = 317
  48. Set KeyF4 = 318
  49. Set KeyF5 = 319
  50. Set KeyF6 = 320
  51. Set KeyF7 = 321
  52. Set KeyF8 = 322
  53. Set KeyF9 = 323
  54. Set KeyF10 = 324
  55. Set KeyF11 = 389
  56. Set KeyF12 = 390
  57.  
  58. % Arrow Keys
  59. Set KeyUp = 328
  60. Set KeyDown = 336
  61. Set KeyLeft = 331
  62. Set KeyRight = 333
  63.  
  64.