home *** CD-ROM | disk | FTP | other *** search
- #ifndef PV_PVMEMORY_H
- #define PV_PVMEMORY_H TRUE
- /*
- ** $Filename: PVMemory.h $
- ** $Release: 1.02 $
- ** $Revision: 37.346 $
- ** $Date: 15 Sep 91 $
- **
- ** Memory structures used by PowerVisor (see 'TheWizardCorner')
- **
- ** ⌐ 1991 Jorrit Tyberghein, included with PowerVisor
- ** All Rights Reserved
- */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #define PVBLOCK APTR
- #define PVHANDLE APTR
-
- struct PVMemoryBlock
- {
- ULONG Size;
- APTR Memory;
- };
-
- struct PVQuickBlock
- {
- ULONG LogicalSize;
- APTR Memory;
- ULONG RealSize;
- };
-
-
- #endif
-