/** Revision Header * Header built automatically - do not edit! ************* * * (C) Copyright 1991 by Olaf `Olsen' Barthel, all rights reserved * * Name .....: PreInclude.c * Created ..: Monday 26-Aug-91 11:20 * Revision .: 1 * * Date Author Comment * ========= ======== ==================== * 26-Aug-91 Olsen Created this file! * ***************************************************************************/ /* Some system includes. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* A standard IFF-ILBM BitMapHeader. */ struct BitMapHeader { UWORD w, h; WORD x, y; UBYTE nPlanes; UBYTE masking; UBYTE compression; UBYTE pad1; UWORD transparentColor; UBYTE xAspect,yAspect; WORD pageWidth,pageHeight; }; /* A custom chunk `MandelSquare' saves which each * picture, it contains the coordinates, screen * width and the number iterations set when the * picture was saved. */ struct MandelInfo { double MinReal,MinImaginary; double RealWidth,ImaginaryHeight; LONG Iterations; }; extern struct DosLibrary *DOSBase; extern struct ExecBase *SysBase; extern struct Library *IFFParseBase;