From 0d12515dcbe59b292aa7dd5bd688501760b5b82e Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sun, 17 Aug 2008 00:46:51 +0000 Subject: [PATCH] - Add timer handle type. svn path=/trunk/; revision=35400 --- reactos/dll/win32/user32/include/user32p.h | 1 + reactos/subsystems/win32/win32k/include/object.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/include/user32p.h b/reactos/dll/win32/user32/include/user32p.h index 24a9c9f4d82..3c156a0bb00 100644 --- a/reactos/dll/win32/user32/include/user32p.h +++ b/reactos/dll/win32/user32/include/user32p.h @@ -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 */ diff --git a/reactos/subsystems/win32/win32k/include/object.h b/reactos/subsystems/win32/win32k/include/object.h index 32c32fb2e31..952697e16c5 100644 --- a/reactos/subsystems/win32/win32k/include/object.h +++ b/reactos/subsystems/win32/win32k/include/object.h @@ -51,7 +51,8 @@ typedef enum _USER_OBJECT_TYPE otCallProc = 7, otAccel, otMonitor = 12, - otEvent = 15 + otEvent = 15, + otTimer } USER_OBJECT_TYPE;