// acxcircuit.h
NTSTATUS AcxCircuitAddEvents(
ACXCIRCUIT Circuit,
ACXEVENT *Events,
ULONG EventsCount
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitAddEvents function adds one or more events to an ACXCIRCUIT.
CircuitAn existing ACXCIRCUIT object. For more information about ACX objects, see Summary of ACX Objects.
EventsAn existing ACXEVENT object containing one or more events.
EventsCountThe number of events that will be added to the circuit. This is a one based count.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
An AcxEvent represents an asynchronous notification available at the driver level. Events can be added to AcxCircuits, AcxStreams, AcxElements and AcxPins. They are exposed as KS events to clients (upper user-mode layers).
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.