home *** CD-ROM | disk | FTP | other *** search
/ Merciful 5 / Merciful - Disc 5.iso / software / r / rtg_master / rtgmasterv21.0dev.lha / includes / c / rtgmaster / rtgPICA.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-04  |  787 b   |  39 lines

  1. #ifndef RTGPICA_H
  2. #define RTGPICA_H TRUE
  3.  
  4. #ifndef RTGSUBLIBS_H
  5. #include <rtgmaster/rtgsublibs.h>
  6. #endif
  7.  
  8. #ifndef EXEC_LIBRARIES_H
  9. #include <exec/libraries.h>
  10. #endif
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15.  
  16. struct RtgBasePICA {
  17.     struct Library rbPICA_LibBase;
  18.     ULONG rbPICA_SegList;
  19.     APTR rbPICA_ExecBase;
  20.     APTR rbPICA_GfxBase;
  21.     APTR rbPICA_IntBase;
  22.     APTR rbPICA_UtilityBase;
  23.     APTR rbPICA_VilIntuiSupBase;
  24. };
  25.  
  26. struct RtgScreenPICA {
  27.     struct RtgScreen rsPICA_Header;
  28.     ULONG rsPICA_ScreenHandle;
  29.     ULONG rsPICA_PlaneSize;
  30.     ULONG rsPICA_BytesPerRow;
  31.     ULONG rsPICA_Depth;
  32.     ULONG rsPICA_DispBuf;   // Buffer currently displayed
  33.     UWORD rsPICA_Height;    // Visible Screen Height
  34.     UWORD rsPICA_NumBuf;    // Number of Buffers
  35. };
  36.  
  37. #endif
  38.  
  39.