/* $Revision Header * Header built automatically - do not edit! ************* * * (C) Copyright 1990 by MXM * * Name .....: PreInclude.c * Created ..: Saturday 15-Sep-90 14:16 * Revision .: 1 * * Date Author Comment * ========= ======== ==================== * 15-Sep-90 Olsen Created this file! * * $Revision Header ********************************************************/ /* Standard system includes. */ #include #include #include #include #include #include #include #include /* Req.library and system library calls. */ #include #include /* Standard 'C' includes. */ #include #include #include /* Calculate number of words required to form a row of * pixels. */ #define byte(Width) (((Width + 15) >> 4) << 1) /* A BitMapHeader (BMHD). */ typedef struct { UWORD w,h; UWORD x,y; UBYTE nPlanes; UBYTE masking; UBYTE compression; UBYTE pad1; UWORD transparentColor; UBYTE xAspect, yAspect; WORD pageWidth, pageHeight; } BitMapHeader; /* A standard IFF-chunk header. */ typedef struct { ULONG IFF_Type; LONG IFF_Length; } IFF_Chunk;