home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 14 / MA_Cover_14.iso / source / e / powerd / modules.lha / modules / devices / prtgfx.m < prev    next >
Encoding:
Text File  |  2000-02-02  |  961 b   |  55 lines

  1. CONST    PCMYELLOW=0,
  2.         PCMMAGENTA=1,
  3.         PCMCYAN=2,
  4.         PCMBLACK=3,
  5.         PCMBLUE=0,
  6.         PCMGREEN=1,
  7.         PCMRED=2,
  8.         PCMWHITE=3
  9.  
  10. OBJECT ColorEntry
  11.     ColorLong:LONG,
  12.     ColorByte[4]:UBYTE,
  13.     ColorsByte[4]:BYTE
  14.  
  15. OBJECT PrtInfo
  16.     Render:LONG,
  17.     RP:PTR TO RastPort,
  18.     TempRp:PTR TO RastPort,
  19.     RowBuf:PTR TO UWORD,
  20.     HamBuf:PTR TO UWORD,
  21.     ColorMap:PTR TO ColorEntry,
  22.     ColorInt:PTR TO ColorEntry,
  23.     HamInt:PTR TO ColorEntry,
  24.     Dest1Int:PTR TO ColorEntry,
  25.     Dest2Int:PTR TO ColorEntry,
  26.     ScaleX:PTR TO UWORD,
  27.     ScaleXAlt:PTR TO UWORD,
  28.     DMatrix:PTR TO CHAR,
  29.     TopBuf:PTR TO UWORD,
  30.     BotBuf:PTR TO UWORD,
  31.     RowBufSize:UWORD,
  32.     HamBufSize:UWORD,
  33.     ColorMapSize:UWORD,
  34.     ColorIntSize:UWORD,
  35.     HamIntSize:UWORD,
  36.     Dest1IntSize:UWORD,
  37.     Dest2IntSize:UWORD,
  38.     ScaleXSize:UWORD,
  39.     ScaleXAltSize:UWORD,
  40.     PrefsFlags:UWORD,
  41.     Special:LONG,
  42.     XStart:UWORD,
  43.     YStart:UWORD,
  44.     Width:UWORD,
  45.     Height:UWORD,
  46.     Pc:LONG,
  47.     Pr:LONG,
  48.     Ymult:UWORD,
  49.     Ymod:UWORD,
  50.     EtY:INT,
  51.     XPos:UWORD,
  52.     Threshold:UWORD,
  53.     TempWidth:UWORD,
  54.     Flags:UWORD
  55.