// storport.h
STORPORT_API VOID StorPortMoveMemory(
[in] PVOID WriteBuffer,
[in] PVOID ReadBuffer,
[in] ULONG Length
);
View the official Windows Driver Kit DDI referenceNo description available.
The StorPortMoveMemory routine copies memory from one buffer to another.
WriteBuffer [in]Pointer to the destination buffer.
ReadBuffer [in]Pointer to the source buffer.
Length [in]Specifies how many bytes to transfer from ReadBuffer to WriteBuffer.
None