Undocumented functions of NTDLL

2OO1, 7 January



NtCreateTimer
NtCreateTimer

NTSYSAPI 
NTSTATUS
NTAPI

NtCreateTimer(

OUT PHANDLE TimerHandle, IN ACCESS_MASK DesiredAccess, IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL, IN TIMER_TYPE TimerType );




  • TimerHandle
  •     Result of call - HANDLE to Timer Object.
  • DesiredAccess
  •     Access mask for TimerHandle. Can be set of (from <WinNT.h>):
  • ObjectAttributes
  •     Optional name of Timer Object.
  • TimerType
  •     Can be NotificationTimer or SynchronizationTimer (enumerated type definition from <ntdef.h>). See also EVENT_TYPE.


    Documented by:
    Tomasz Nowak



    Requirements:
    Library: ntdll.lib


    See also:
    EVENT_TYPE
    NtOpenTimer