NdisMoveMappedMemory (Windows Embedded CE 6.0)
1/6/2010
This function copies data from one location to another within a device memory range that was mapped during initialization with the NdisMMapIoSpace function.
Syntax
VOID NdisMoveMappedMemory(
PVOID Destination,
PVOID Source,
ULONG Length
);
Parameters
- Destination
[out] Specifies the base virtual address within the mapped range at which the data should be copied.
- Source
[in] Specifies the base virtual address within the mapped range at which the copy should begin.
- Length
[in] Specifies the number of bytes to copy.
Return Value
None.
Remarks
Both the Source and Destination pointers are virtual addresses. The virtual ranges specified both by Destination and Length and by Source and Length must fall within the range that was mapped during initialization with NdisMMapIoSpace.
Requirements
Header | ndis.h |
Library | ndis.dll |
Windows Embedded CE | Windows CE .NET 4.0 and later |
See Also
Reference
NDIS Library Functions
NdisAllocateMemory
NdisMMapIoSpace
NdisMoveFromMappedMemory
NdisMoveMemory
NdisMoveToMappedMemory