TIMER_BASIC_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

typedef struct _TIMER_BASIC_INFORMATION
{
    LARGE_INTEGER RemainingTime;
    BOOLEAN TimerState;
} TIMER_BASIC_INFORMATION, *PTIMER_BASIC_INFORMATION;

#endif
#endif

View code on GitHub

RemainingTime

Contains time (in 100ns units) to next timer signal (negative value), or time after last signalization.

TimerState

If TRUE, timer is signaled.

Documented by

See also