home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / MPIMAGE51.LZX / include / clib / MPImage_protos.h
Encoding:
C/C++ Source or Header  |  1996-10-10  |  848 b   |  25 lines

  1. #ifndef CLIB_MPIMAGE_PROTOS_H
  2. #define CLIB_MPIMAGE_PROTOS_H
  3.  
  4. /* Prototypes for MPImage.library */
  5.  
  6. /* mark@topic.demon.co.uk */
  7. /* mpaddock@cix.compulink.co.uk */
  8.  
  9. /* $VER: MPImage_protos.h 5.1 (1.10.96)
  10. */
  11.  
  12. struct MPImage *LoadMPImage(const char *filename,struct Screen *screen,ULONG Flags);
  13. void FreeMPImage(struct MPImage *MPi);
  14. char *MPImageErrorMessage(void);
  15. BOOL SaveMPImageA(const UBYTE *file,
  16.                                 UBYTE *red, UBYTE *green, UBYTE *blue,
  17.                                 UWORD width, UWORD height, struct TagItem *TagList);
  18. BOOL SaveMPImage(const UBYTE *file,
  19.                                 UBYTE *red, UBYTE *green, UBYTE *blue,
  20.                                 UWORD width, UWORD height,Tag tag1, ...);
  21. BOOL RescaleMPImage(struct MPImage *MPi,UWORD x,UWORD y);
  22. void SetMPImageScreen(char *ScreenName,ULONG Flags);
  23. void MPPlanarToChunky(struct BitMap *bitmap,UBYTE *chunky, UWORD width, UWORD height);
  24. #endif
  25.