home *** CD-ROM | disk | FTP | other *** search
- {$if not def GRAPHICS_SCALE_H} CONST GRAPHICS_SCALE_H=0;
-
- { ******************************************************************
- ** KickPascal-Include-Datei "graphics/scale.h" zu Kickstart 3.0 **
- ****************************************************************** }
-
- TYPE p_BitScaleArgs = ^BitScaleArgs;
- {$if not def GRAPHICS_GFX_H;incl "graphics/gfx.h";endif }
-
- TYPE BitScaleArgs = RECORD
- bsa_SrcX : Integer;
- bsa_SrcY : Integer;
- bsa_SrcWidth : Integer;
- bsa_SrcHeight : Integer;
- bsa_XSrcFactor : Integer;
- bsa_YSrcFactor : Integer;
- bsa_DestX : Integer;
- bsa_DestY : Integer;
- bsa_DestWidth : Integer;
- bsa_DestHeight : Integer;
- bsa_XDestFactor : Integer;
- bsa_YDestFactor : Integer;
- bsa_SrcBitMap : p_BitMap;
- bsa_DestBitMap : p_BitMap;
- bsa_Flags : Long;
- bsa_XDDA : Word;
- bsa_YDDA : Word;
- bsa_Reserved1 : LongInt;
- bsa_Reserved2 : LongInt;
- END;
- {$endif}
-