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.

19 lines
321 B

  1. #ifndef __IEEVENTS_H_
  2. #define __IEEVENTS_H_
  3. #define IE_KEY_MAXSTROKES 3
  4. typedef struct
  5. {
  6. WORD wVirtKey;
  7. WORD wScanCode;
  8. BYTE bFlags;
  9. } IE_KEYSTROKE, *PIE_KEYSTROKE;
  10. typedef struct
  11. {
  12. UINT uCount;
  13. IE_KEYSTROKE KeyStrokes[IE_KEY_MAXSTROKES];
  14. } IE_KEYEVENT, *PIE_KEYEVENT;
  15. #endif