#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef enum _EVENT_INFORMATION_CLASS
{
EventBasicInformation
} EVENT_INFORMATION_CLASS;
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:
See EVENT_BASIC_INFORMATION
for details.