TIMER2_ATTRIBUTES - NtDoc

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

// rev
typedef union _TIMER2_ATTRIBUTES
{
    ULONG Value;
    struct
    {
        ULONG Reserved0 : 2;
        ULONG HighResolution : 1;
        ULONG Reserved1 : 28;
        TIMER_TYPE NotificationType : 1;
    };
} TIMER2_ATTRIBUTES;

#endif
#endif
#endif

View code on GitHub

NtDoc

No description available.