Carbon


MemoryBlock

Header: MacMemory.h

The GetPhysical function uses a structure of type MemoryBlock to hold information about a block of memory, either logical or physical.

struct MemoryBlock {
    void *address; 
    UInt32 count;
};

Field descriptions

address

A pointer to the beginning of a block of memory.

count

The number of bytes in the block of memory.

The GetPhysical function uses a structure of type MemoryBlock to hold information about a block of memory, either logical or physical.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)