// acxcircuit.h
typedef struct _ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS {
ULONG Size;
PFN_ACX_FACTORY_CIRCUIT_CREATE_CIRCUITDEVICE EvtAcxFactoryCircuitCreateCircuitDevice;
PFN_ACX_FACTORY_CIRCUIT_DELETE_CIRCUITDEVICE EvtAcxFactoryCircuitDeleteCircuitDevice;
PFN_ACX_FACTORY_CIRCUIT_CREATE_CIRCUIT EvtAcxFactoryCircuitCreateCircuit;
} ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS, *PACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS structure identifies the driver callbacks for ACX factory operations.
SizeThe length, in bytes, of this structure.
EvtAcxFactoryCircuitCreateCircuitDeviceThe EVT_ACX_FACTORY_CIRCUIT_CREATE_CIRCUITDEVICE callback.
EvtAcxFactoryCircuitDeleteCircuitDeviceThe ACX_FACTORY_CIRCUIT_DELETE_CIRCUITDEVICE callback.
EvtAcxFactoryCircuitCreateCircuitThe EVT_ACX_FACTORY_CIRCUIT_CREATE_CIRCUIT callback.
Example usage is shown below.
ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS operationCallbacks;
//
// Assign the circuit's operation-callbacks.
//
ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS_INIT(&operationCallbacks);
operationCallbacks.EvtAcxFactoryCircuitCreateCircuitDevice = SdcaXu_EvtAcxFactoryCircuitCreateCircuitDevice;
operationCallbacks.EvtAcxFactoryCircuitCreateCircuit = SdcaXu_EvtAcxFactoryCircuitCreateCircuit;
AcxFactoryCircuitInitSetOperationCallbacks(factoryInit, &operationCallbacks);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.