Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB

  1. /* KBD.H */
  2. void sendPressList(void);
  3. void sendCombineList(void);
  4. void sendExtendedKey(unsigned char cKeyCode);
  5. void sendDownKeyCode(unsigned char cKeyCode);
  6. void sendUpKeyCode(unsigned char cKeyCode);
  7. int inLockList(unsigned char searchChar);
  8. int inHoldList(unsigned char searchChar);
  9. int inTempList(unsigned char searchChar);
  10. void releaseKeysFromHoldList(void);
  11. void removeKeyFromHoldList(unsigned char cTheKey);
  12. void releaseKeysFromLockList(void);
  13. void processKbdIndicator(unsigned char cGideiCode);
  14. void processKbdVersion(unsigned char cGideiCode);
  15. void processKbdDescription(unsigned char cGideiCode);
  16. void processKbdModel(unsigned char cGideiCode);
  17. void processKbdRel(unsigned char cGideiCode);
  18. void processKbdLock(unsigned char cGideiCode);
  19. void processKbdHold(unsigned char cGideiCode);
  20. void processKbdCombine(unsigned char cGideiCode);
  21. void processKbdPress(unsigned char cGideiCode);
  22. void processKbd(unsigned char cGideiCode);
  23. unsigned char xlateNumToScanCode(unsigned char Value);
  24.