struttura WDF_REQUEST_PARAMETERS (wdfrequest.h)
[Si applica a KMDF e UMDF]
La struttura WDF_REQUEST_PARAMETERS riceve i parametri associati a una richiesta di I/O.
Sintassi
typedef struct _WDF_REQUEST_PARAMETERS {
USHORT Size;
UCHAR MinorFunction;
WDF_REQUEST_TYPE Type;
union {
struct {
PIO_SECURITY_CONTEXT SecurityContext;
ULONG Options;
USHORT POINTER_ALIGNMENT FileAttributes;
USHORT ShareAccess;
ULONG POINTER_ALIGNMENT EaLength;
} Create;
struct {
size_t Length;
ULONG POINTER_ALIGNMENT Key;
LONGLONG DeviceOffset;
} Read;
struct {
size_t Length;
ULONG POINTER_ALIGNMENT Key;
LONGLONG DeviceOffset;
} Write;
struct {
size_t OutputBufferLength;
size_t POINTER_ALIGNMENT InputBufferLength;
ULONG POINTER_ALIGNMENT IoControlCode;
PVOID Type3InputBuffer;
} DeviceIoControl;
struct {
PVOID Arg1;
PVOID Arg2;
ULONG POINTER_ALIGNMENT IoControlCode;
PVOID Arg4;
} Others;
} Parameters;
} WDF_REQUEST_PARAMETERS, *PWDF_REQUEST_PARAMETERS;
Members
Size
Dimensione, in byte, della struttura.
MinorFunction
Codice di funzione secondaria IRP, se presente, associato alla richiesta di I/O. Alcuni codici di funzione principali hanno codici di funzione secondari associati.
Type
Valore tipizzato WDF_REQUEST_TYPE che identifica il tipo della richiesta di I/O.
Parameters
Parametri univoci per ogni codice di funzione principale di IRP. Questo membro contiene un subset del membro Parameters della struttura IO_STACK_LOCATION .
Parameters.Create
Parametri per IRP_MJ_CREATE.
Parameters.Create.SecurityContext
Parameters.Create.Options
Parameters.Create.FileAttributes
Parameters.Create.ShareAccess
Parameters.Create.EaLength
Parameters.Read
Parametri per IRP_MJ_READ.
Parameters.Read.Length
Parameters.Read.Key
Parameters.Read.DeviceOffset
Parameters.Write
Parametri per IRP_MJ_WRITE.
Parameters.Write.Length
Parameters.Write.Key
Parameters.Write.DeviceOffset
Parameters.DeviceIoControl
Parametri per IRP_MJ_DEVICE_CONTROL e IRP_MJ_INTERNAL_DEVICE_CONTROL.
Parameters.DeviceIoControl.OutputBufferLength
Parameters.DeviceIoControl.InputBufferLength
Parameters.DeviceIoControl.IoControlCode
Parameters.DeviceIoControl.Type3InputBuffer
Parameters.Others
L'uso di questo membro è definito dallo stack di driver.
Parameters.Others.Arg1
Parameters.Others.Arg2
Parameters.Others.IoControlCode
Parameters.Others.Arg4
Commenti
La struttura WDF_REQUEST_PARAMETERS viene usata come input per WdfRequestGetParameters. I driver devono chiamare WDF_REQUEST_PARAMETERS_INIT per inizializzare questa struttura prima di chiamare WdfRequestGetParameters.
Requisiti
Requisito | Valore |
---|---|
Versione KMDF minima | 1.0 |
Versione UMDF minima | 2,0 |
Intestazione | wdfrequest.h (include Wdf.h) |