Undocumented functions of NTDLL

2OO1, 7 January



EVENT_BASIC_INFORMATION
EVENT_BASIC_INFORMATION

typedef struct _EVENT_BASIC_INFORMATION {

EVENT_TYPE EventType; LONG EventState;

} EVENT_BASIC_INFORMATION, *PEVENT_BASIC_INFORMATION;



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:
    Tomasz Nowak



    Requirements:
    Library: ntdll.lib


    See also:
    EVENT_INFORMATION_CLASS
    EVENT_TYPE
    NtQueryEvent