// acxevents.h
VOID AcxEventAddEventData(
ACXEVENT Event,
ACXEVENTDATA EventData
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxEventAddEventData function adds event data to an ACXEVENT object.
EventThe ACXEVENT object (described in Summary of ACX Objects).
EventDataThe ACXEVENTDATA ACX object.
An ACXEVENTDATA represents the EVENT obj from the client.
An ACXEVENT represents an asynchronous notification available at the driver level. Events can be added to ACXCIRCUITs, ACXSTREAMs, ACXELEMENTs and ACXPINs. Internally they are exposed as KS Events to upper layers. For more information about KS Events, see KS Events.
This sample shows the use of AcxEventAddEventData.
VOID
CodecR_EvtMuteElementChangeEventCallback(
_In_ ACXOBJECT Object,
_In_ ACXEVENT Event,
_In_ ACX_EVENT_VERB Verb,
_In_opt_ ACXEVENTDATA EventData,
_In_opt_ WDFREQUEST Request
)
{
...
AcxEventAddEventData(Event, EventData);
...
}
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.