Condividi tramite


enumerazione ACX_PROPERTY_VERB (acxrequest.h)

L'enumerazione ACX_PROPERTY_VERB descrive il tipo di operazioni verbo supportate nelle proprietà ACX.

Sintassi

typedef enum _ACX_PROPERTY_VERB {
  AcxPropertyVerbNone,
  AcxPropertyVerbGet,
  AcxPropertyVerbSet,
  AcxPropertyVerbBasicSupport,
  AcxPropertyVerbSetSupport,
  AcxPropertyVerbMax
} ACX_PROPERTY_VERB, *PACX_PROPERTY_VERB;

Costanti

 
AcxPropertyVerbNone
Nessun supporto verbo.
AcxPropertyVerbGet
Il supporto per i verbi è abilitato.
AcxPropertyVerbSet
Impostare Supporto verbo abilitato.
AcxPropertyVerbBasicSupport
È disponibile il supporto dei verbi di base.
AcxPropertyVerbSetSupport
È disponibile il supporto set di verbi.
AcxPropertyVerbMax
Per la convalida interna, non usare .

Commenti

Esempio

Di seguito è riportato un esempio di utilizzo.

(
    _In_ WDFDEVICE Device,
    _In_ ACXTARGETCIRCUIT TargetCircuit,
    _In_ GUID PropertySet,
    _In_ ULONG PropertyId,
    _In_ ACX_PROPERTY_VERB Verb,
    _Inout_ PVOID Value,
    _In_ ULONG ValueCb
)
{
    PAGED_CODE();

    ACX_REQUEST_PARAMETERS requestParams;
    ACX_REQUEST_PARAMETERS_INIT_PROPERTY(
        &requestParams,
        PropertySet,
        PropertyId,
        Verb,
        AcxItemTypeCircuit,
        0,
        NULL, 0,
        Value, ValueCb
    );

Requisiti di ACX

Versione minima di ACX: 1.0

Per altre informazioni sulle versioni ACX, vedere La panoramica della versione di ACX.

Requisiti

Requisito Valore
Intestazione acxrequest.h

Vedi anche