#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The EVENT_INFORMATION_CLASS specifies the type of information to be retrieved about an event object.
*/
typedef enum _EVENT_INFORMATION_CLASS
{
EventBasicInformation
} EVENT_INFORMATION_CLASS;
View code on GitHubNo description available.
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.