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

#ifndef __IEEVENTS_H_
#define __IEEVENTS_H_
#define IE_KEY_MAXSTROKES 3
typedef struct
{
WORD wVirtKey;
WORD wScanCode;
BYTE bFlags;
} IE_KEYSTROKE, *PIE_KEYSTROKE;
typedef struct
{
UINT uCount;
IE_KEYSTROKE KeyStrokes[IE_KEY_MAXSTROKES];
} IE_KEYEVENT, *PIE_KEYEVENT;
#endif