home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / graphics / scale.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  930 b   |  32 lines

  1. {$if not def GRAPHICS_SCALE_H} CONST GRAPHICS_SCALE_H=0;
  2.  
  3. { ******************************************************************
  4.   ** KickPascal-Include-Datei "graphics/scale.h" zu Kickstart 3.0 **
  5.   ****************************************************************** }
  6.  
  7. TYPE p_BitScaleArgs = ^BitScaleArgs;
  8. {$if not def GRAPHICS_GFX_H;incl "graphics/gfx.h";endif }
  9.  
  10. TYPE BitScaleArgs = RECORD
  11.  bsa_SrcX        : Integer;
  12.  bsa_SrcY        : Integer;
  13.  bsa_SrcWidth    : Integer;
  14.  bsa_SrcHeight   : Integer;
  15.  bsa_XSrcFactor  : Integer;
  16.  bsa_YSrcFactor  : Integer;
  17.  bsa_DestX       : Integer;
  18.  bsa_DestY       : Integer;
  19.  bsa_DestWidth   : Integer;
  20.  bsa_DestHeight  : Integer;
  21.  bsa_XDestFactor : Integer;
  22.  bsa_YDestFactor : Integer;
  23.  bsa_SrcBitMap   : p_BitMap;
  24.  bsa_DestBitMap  : p_BitMap;
  25.  bsa_Flags       : Long;
  26.  bsa_XDDA        : Word;
  27.  bsa_YDDA        : Word;
  28.  bsa_Reserved1   : LongInt;
  29.  bsa_Reserved2   : LongInt;
  30. END;
  31. {$endif}
  32.