Structure MDL (wdm.h)
Une structure MDL est une structure partiellement opaque qui représente une liste de descripteurs de mémoire (MDL).
Syntaxe
typedef struct _MDL {
struct _MDL *Next;
CSHORT Size;
CSHORT MdlFlags;
struct _EPROCESS *Process;
PVOID MappedSystemVa;
PVOID StartVa;
ULONG ByteCount;
ULONG ByteOffset;
} MDL, *PMDL;
Membres
Next
Pointeur vers le MDL suivant dans une chaîne MDL. Pour plus d’informations sur les chaînes MDL, consultez Utilisation de MDL.
Size
MdlFlags
Process
MappedSystemVa
StartVa
ByteCount
ByteOffset
Remarques
Un MDL décrit la disposition d’une mémoire tampon de mémoire virtuelle dans la mémoire physique. Pour plus d’informations, consultez Utilisation de dll MDL.
Configuration requise
Condition requise | Valeur |
---|---|
En-tête | wdm.h (inclure Wdm.h, Ntddk.h, Ntifs.h) |