// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API PVOID VideoPortGetMdl(
[in] IN PVOID HwDeviceExtension,
[in] IN PDMA pDma
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortGetMdl function is obsolete in Windows 2000 and later.
VideoPortGetMdl retrieves the memory descriptor list (MDL) that represents the page table of the locked buffer.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
pDma [in]Is a handle to the DMA context being queried. This handle was obtained from VideoPortLockPages or VideoPortDoDma.
VideoPortGetMdl returns pDma, for compatibility reasons.
See Bus-Master DMA in Video Miniport Drivers for information about packet-based and common-buffer DMA transfers.