Condividi tramite


Struttura MDL (wdm.h)

Una struttura MDL è una struttura parzialmente opaca che rappresenta un elenco di descrittori di memoria (MDL).

Sintassi

typedef struct _MDL {
  struct _MDL      *Next;
  CSHORT           Size;
  CSHORT           MdlFlags;
  struct _EPROCESS *Process;
  PVOID            MappedSystemVa;
  PVOID            StartVa;
  ULONG            ByteCount;
  ULONG            ByteOffset;
} MDL, *PMDL;

Members

Next

Puntatore al file MDL successivo in una catena MDL. Per altre informazioni sulle catene MDL, vedere Using MDLs.For more information about MDL chain, see Using MDLs.

Size

MdlFlags

Process

MappedSystemVa

StartVa

ByteCount

ByteOffset

Commenti

Un MDL descrive il layout di un buffer di memoria virtuale nella memoria fisica. Per altre informazioni, vedere Using MDLs.For more information, see Using MDLs.

Requisiti

Requisito Valore
Intestazione wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)

Vedi anche