home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $Id: mybrush.h,v 1.2 1999/08/03 17:28:35 kingguppy Exp $
- */
-
- #ifndef MYBRUSH_H
- #define MYBRUSH_H
-
- struct MyImage {
- UWORD Width;
- UWORD Height;
- UWORD *ImageData;
- APTR Datatype;
- ULONG BytesPerRow;
- UBYTE Depth;
- UBYTE *CReg;
- UBYTE *Planes[8];
- };
-
- struct MyBrush {
- UWORD Width;
- UWORD Height;
- struct BitMap *BitMap;
- ULONG *Colors;
- };
-
- extern struct MyBrush *LoadBrush( STRPTR );
- extern void FreeBrush( struct MyBrush * );
-
- #endif
-