Partilhar via


ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS estrutura (acxcircuit.h)

A estrutura ACX_FACTORY_CIRCUIT_OPERATION_CALLBACKS identifica os retornos de chamada do driver para operações de fábrica do ACX.

Sintaxe

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;

Membros

Size

O comprimento, em bytes, dessa estrutura.

EvtAcxFactoryCircuitCreateCircuitDevice

Ode retorno de chamada EVT_ACX_FACTORY_CIRCUIT_CREATE_CIRCUITDEVICE .

EvtAcxFactoryCircuitDeleteCircuitDevice

Ode retorno de chamada ACX_FACTORY_CIRCUIT_DELETE_CIRCUITDEVICE .

EvtAcxFactoryCircuitCreateCircuit

Ode retorno de chamada EVT_ACX_FACTORY_CIRCUIT_CREATE_CIRCUIT .

Observações

Exemplo

O uso de exemplo é mostrado abaixo.

    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);

Requisitos do ACX

versão mínima do ACX: 1.0

Para obter mais informações sobre versões do ACX, consulte visão geral da versão do ACX.

Requisitos

Requisito Valor
cabeçalho acxcircuit.h

Consulte também