structure ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS (acxcircuit.h)
La structure ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS identifie les rappels de pilotes pour les opérations d’usine ACX.
Syntaxe
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;
Membres
Size
Longueur, en octets, de cette structure.
EvtAcxFactoryCircuitCreateCircuitDevice
Rappel EVT_ACX_FACTORY_CIRCUIT_CREATE_CIRCUITDEVICE.
EvtAcxFactoryCircuitDeleteCircuitDevice
Rappel ACX_FACTORY_CIRCUIT_DELETE_CIRCUITDEVICE.
EvtAcxFactoryCircuitCreateCircuit
de rappel
Remarques
Exemple
L’exemple d’utilisation est illustré ci-dessous.
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);
Configuration requise pour ACX
version minimale d’ACX : 1.0
Pour plus d’informations sur les versions ACX, consultez vue d’ensemble de la version ACX.
Exigences
Exigence | Valeur |
---|---|
d’en-tête | acxcircuit.h |