home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / ImageLib / Image_lib / include / clib / image_protos.h
Encoding:
C/C++ Source or Header  |  1999-05-23  |  992 b   |  22 lines

  1. #ifndef CLIB_IMAGE_PROTOS_H
  2. #define CLIB_IMAGE_PROTOS_H
  3.  
  4. #ifndef LIBRARIES_IMAGE_H
  5. #include <libraries/image.h>
  6. #endif /* LIBRARIES_IMAGE_H */
  7.  
  8. VOID DrawBitMap( struct BitMap *, ULONG, ULONG, ULONG, ULONG, struct RastPort * );
  9. struct BitMap *ChunkyToBitMapA( struct Screen *, struct ChunkyImg *, struct TagItem * );
  10. struct BitMap *ChunkyToBitMap( struct Screen *, struct ChunkyImg *, ULONG tag1Type, ... );
  11. VOID FreeChunky( struct Screen *, struct BitMap * );
  12. LONG DrawTextA( struct TagItem * );
  13. LONG DrawText( ULONG tag1Type, ... );
  14. VOID Draw3DBoxA( struct RastPort *, struct TextFont*, struct TagItem * );
  15. VOID Draw3DBox( struct RastPort *, struct TextFont*, ULONG tag1Type, ... );
  16. struct BitMap *ScaleBitMapA( struct BitMap *, struct TagItem * );
  17. struct BitMap *ScaleBitMap( struct BitMap *, ULONG tag1Type, ... );
  18. struct BitMap *ChunkyToHAMA( struct ChunkyImg *, struct TagItem * );
  19. struct BitMap *ChunkyToHAM( struct ChunkyImg *, ULONG tag1Type, ... );
  20.  
  21. #endif /* CLIB_IMAGE_PROTOS_H */
  22.