Compartilhar via


ACX_PROPERTY_VERB enumeração (acxrequest.h)

A enumeração ACX_PROPERTY_VERB descreve o tipo de operações de verbo com suporte nas propriedades ACX.

Syntax

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

Constantes

 
AcxPropertyVerbNone
Sem suporte para verbos.
AcxPropertyVerbGet
Obter Suporte ao Verbo está habilitado.
AcxPropertyVerbSet
Definir o Suporte ao Verbo está habilitado.
AcxPropertyVerbBasicSupport
O suporte básico ao Verbo está disponível.
AcxPropertyVerbSetSupport
O suporte ao Verb Set está disponível.
AcxPropertyVerbMax
Para validação interna, não use.

Comentários

Exemplo

O uso de exemplo é mostrado abaixo.

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

Requisitos do ACX

Versão mínima do ACX: 1.0

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

Requisitos

Requisito Valor
Cabeçalho acxrequest.h

Confira também