Important: The information in this document is obsolete and should not be used for new development.
Memory-Block Record
TheGetPhysicalfunction uses a memory-block record to hold information about a block of memory, either logical or physical. The memory-block record is a data structure of typeMemoryBlock.
TYPE MemoryBlock = RECORD address: Ptr; {start of block} count: LongInt; {size of block} END;
Field Description
address- A pointer to the beginning of a block of memory.
count- The number of bytes in the block of memory.