home *** CD-ROM | disk | FTP | other *** search
- #ifndef PV_PVMEMORY_H
- #define PV_PVMEMORY_H TRUE
- /*
- ** $Filename: PVMemory.h $
- ** $Release: 1.32 $
- ** $Revision: 37.1298 $
- ** $Date: 31 Aug 92 $
- **
- ** Memory structures used by PowerVisor (see 'TheWizardCorner')
- **
- ** © 1992 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;
- };
-
-
- #endif
-