EVENT_INFORMATION_CLASS - 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 enum _EVENT_INFORMATION_CLASS
{
    EventBasicInformation
} EVENT_INFORMATION_CLASS;

#endif
#endif

View code on GitHub

This enumeration type is used with NtQueryEvent. There're no corresponding function to set event information.
Currently only one information class is defined:

EventBasicInformation

See EVENT_BASIC_INFORMATION for details.

Documented by

See also