Unmaps a specific physical address previously mapped with MapPhysToLinear.
Language
|
Description
|
C/C++
|
void UnmapMemory ( HANDLE hPci, ULONG PhysAddr, ULONG MappedSize );
|
Delphi
|
procedure UnmapMemory ( hPci: THandle; PhysAddr: Longword; MappedSize: Longword ); stdcall
|
VB
|
Sub UnmapMemory ( ByVal hPci As Long, ByVal PhysAddr As Long, ByVal MappedSize As Long)
|
Parameters:
hPci - the handle returned by a successful call to OpenRapidPci
PhysAddr - 32-bit physical address of the start of the region previously mapped
MappedSize - length in bytes of the mapped region
Return Value :
None.
See also : MapPhysToLinear
|