home *** CD-ROM | disk | FTP | other *** search
/ fxPAINT 1.0 / fxPAINT 1.0.iso / tools / ics / software / ics.lzh / ICS / Programmer / Include / clib / ics_protos.h
Encoding:
C/C++ Source or Header  |  1998-04-15  |  1.2 KB  |  33 lines

  1. /*
  2. **      ics_protos.h
  3. **
  4. **      prototypes for ics.library
  5. **
  6. **      (C) Copyright 1997 Wolf Faust
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef CLIB_ICS_PROTOS_H
  11. #define CLIB_ICS_PROTOS_H
  12.  
  13. #ifndef ICS_ICS_H
  14. #include <ICS/ICS.h>
  15. #endif /* ICS_ICS_H */
  16.  
  17. void *CreateIDCA(struct TagItem *tags);
  18. void *CreateIDC(unsigned long tag1, ...);
  19. void DeleteIDC(void *);
  20. uint_fast32_t SetIDCMode(void *idc, uint_fast32_t  flag);
  21. uint32_t SetupIDCColorMatchingA(void *idc, struct Screen *screen, struct TagItem *tags);
  22. uint32_t SetupIDCColorMatching(void *idc, struct Screen *screen, unsigned long tag1, ...);
  23. HTRANSFORM CreateIDCTransformA(void *idc, struct TagItem *tags);
  24. HTRANSFORM CreateIDCTransform(void *idc, unsigned long tag1, ...);
  25. void DeleteIDCTransform(HTRANSFORM hColorTransform);
  26. BOOL TranslateColors(HTRANSFORM hColorTransform, PCOLOR paInoutColors, uintmax_t nColors, COLORTYPE ctInput, PCOLOR paOutputColors, COLORTYPE ctOutput);
  27. uint_fast32_t ICSErr(void *idc);
  28. PSTR ICSFault(void *idc, PSTR header);
  29. uint_fast32_t ICSStatusWinA(HTRANSFORM hColorTransform, struct TagItem *tags);
  30. uint_fast32_t ICSStatusWin(HTRANSFORM hColorTransform, unsigned long tag1, ...);
  31.  
  32. #endif /* CLIB_ICS_PROTOS_H */
  33.