// video.h
VIDEOPORT_API VOID VideoPortMoveMemory(
[in, out] PVOID Destination,
[in, out] PVOID Source,
ULONG Length
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortMoveMemory function copies data from the source location to the destination location in system memory.
Destination [in, out]Pointer to the destination location.
Source [in, out]Pointer to the location of the data to copy.
LengthSpecifies the number of bytes to copy.
None
VideoPortMoveMemory moves memory either forward or backward, aligned or unaligned, in 4-byte blocks, followed by any remaining bytes.
The given Destination and Source must be in a mapped logical range returned by VideoPortGetDeviceBase and/or a system space RAM address, such as an address on the stack.
Callers of VideoPortMoveMemory can be running at any IRQL if both memory blocks are resident. Otherwise, the caller must be running at IRQL < DISPATCH_LEVEL.