- Add timer handle type.

svn path=/trunk/; revision=35400
This commit is contained in:
James Tabor 2008-08-17 00:46:51 +00:00
parent 7fd0c1eb30
commit 0d12515dcb
2 changed files with 3 additions and 1 deletions

View file

@ -187,6 +187,7 @@ extern int SPY_Init(void);
#define VALIDATE_TYPE_ACCEL 8
#define VALIDATE_TYPE_MONITOR 12
#define VALIDATE_TYPE_EVENT 15
#define VALIDATE_TYPE_TIMER 16
#define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
#define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */

View file

@ -51,7 +51,8 @@ typedef enum _USER_OBJECT_TYPE
otCallProc = 7,
otAccel,
otMonitor = 12,
otEvent = 15
otEvent = 15,
otTimer
} USER_OBJECT_TYPE;