// acxrequest.h
typedef struct _ACX_EVENT_ITEM {
const GUID *Set;
ULONG Id;
ULONG Flags;
PFN_ACX_OBJECT_PROCESS_EVENT_REQUEST EvtAcxObjectProcessRequest;
PVOID Reserved;
} ACX_EVENT_ITEM, *PACX_EVENT_ITEM;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_EVENT_ITEM structure describes an event item that is the target of an ACX request.
SetSpecifies a GUID that identifies a KS (kernel streaming) event item set.
IdSpecifies the member of the event set.
FlagsThe Flags field can be used to set the following Flags defined in the AcxRequest header.
#define ACX_EVENT_ITEM_FLAG_NONE 0x00000000
#define ACX_EVENT_ITEM_FLAG_ENABLE 0x00000001 // KSEVENT_TYPE_ENABLE
#define ACX_EVENT_ITEM_FLAG_BASICSUPPORT 0x00000200 // KSEVENT_TYPE_BASICSUPPORT
EvtAcxObjectProcessRequestThe EVT_ACX_OBJECT_PROCESS_REQUEST callback event handler associated with this item.
ReservedThis field is reserved.
Example usage is shown below.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.