// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API BOOLEAN VideoPortUnlockPages(
PVOID hwDeviceExtension,
PDMA pDma
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortUnlockPages function is obsolete in Windows 2000 and later. Use VideoPortUnlockBuffer in place of this function.
VideoPortUnlockPages releases memory used for packet-based DMA.
hwDeviceExtensionPointer to the miniport driver's device extension.
pDmaSpecifies a non-NULL DMA handle.
VideoPortUnlockPages always returns TRUE.
See Bus-Master DMA in Video Miniport Drivers for information about packet-based and common-buffer DMA transfers.
This function can be called only within the context of a DMA IOCTL. It cannot be called from an ISR or DPC.