Author: jimtabor Date: Sat Aug 16 19:46:51 2008 New Revision: 35400
URL: http://svn.reactos.org/svn/reactos?rev=35400&view=rev Log: - Add timer handle type.
Modified: trunk/reactos/dll/win32/user32/include/user32p.h trunk/reactos/subsystems/win32/win32k/include/object.h
Modified: trunk/reactos/dll/win32/user32/include/user32p.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/include/us... ============================================================================== --- trunk/reactos/dll/win32/user32/include/user32p.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/user32/include/user32p.h [iso-8859-1] Sat Aug 16 19:46:51 2008 @@ -187,6 +187,7 @@ #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 */
Modified: trunk/reactos/subsystems/win32/win32k/include/object.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/object.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/object.h [iso-8859-1] Sat Aug 16 19:46:51 2008 @@ -51,7 +51,8 @@ otCallProc = 7, otAccel, otMonitor = 12, - otEvent = 15 + otEvent = 15, + otTimer
} USER_OBJECT_TYPE;