EVENT_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)

/**
 * The EVENT_BASIC_INFORMATION structure contains basic information about an event object.
 */
typedef struct _EVENT_BASIC_INFORMATION
{
    EVENT_TYPE EventType;   // The type of the event object (NotificationEvent or SynchronizationEvent).
    LONG EventState;        // The current state of the event object. Nonzero if the event is signaled; zero if not signaled.
} EVENT_BASIC_INFORMATION, *PEVENT_BASIC_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.

NTinternals.net (undocumented.ntinternals.net)

This structure is used with EventBasicInformation information class as a result of call NtQueryEvent.

EventType

Type of Event Object. Can be SynchronizationEvent or NotificationEvent. See EVENT_TYPE for details.

EventState

Current state of Event Object.

Documented by

See also