home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / debug-utils / pv / pvdevelop / pvdevelop.lha / include / PV / PVMemory.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-31  |  469 b   |  30 lines

  1. #ifndef PV_PVMEMORY_H
  2. #define PV_PVMEMORY_H TRUE
  3. /*
  4. **  $Filename: PVMemory.h $
  5. **  $Release: 1.32 $
  6. **  $Revision: 37.1298 $
  7. **  $Date: 31 Aug 92 $
  8. **
  9. **  Memory structures used by PowerVisor (see 'TheWizardCorner')
  10. **
  11. **  © 1992 Jorrit Tyberghein, included with PowerVisor
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. #define PVBLOCK APTR
  20. #define PVHANDLE APTR
  21.  
  22. struct PVMemoryBlock
  23.     {
  24.         ULONG Size;
  25.         APTR Memory;
  26.     };
  27.  
  28.  
  29. #endif
  30.