home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / ColorSync SDK / Sample Code / CSDemo 2.1 / CSDemoSources / myDrawMatchedPict.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-13  |  836 b   |  38 lines  |  [TEXT/CWIE]

  1.  
  2. #ifndef _MYDRAWMATCHEDPICT_
  3. #define _MYDRAWMATCHEDPICT_
  4.  
  5.  
  6. #ifndef __QUICKDRAW__
  7. #include <QuickDraw.h>
  8. #endif
  9.  
  10. #ifndef __CMAPPLICATION__
  11. #include <CMApplication.h>
  12. #endif
  13.  
  14.  
  15. /**\
  16. |**| ==============================================================================
  17. |**| PUBLIC FUNCTION PROTOTYPES
  18. |**| ==============================================================================
  19. \**/
  20. OSErr    myDrawMatchedPicture    ( PicHandle pict,
  21.                                   CMProfileRef srceProf,
  22.                                   CMProfileRef prevProf,
  23.                                   Rect *rect ) ;
  24.  
  25. OSErr    myDrawProofedPicture    ( PicHandle pict,
  26.                                   CMProfileRef srceProf,
  27.                                   CMProfileRef destProf,
  28.                                   CMProfileRef prevProf,
  29.                                   Rect *rect ) ;
  30.  
  31. OSErr    myDrawCheckedPicture    ( PicHandle pict,
  32.                                   CMProfileRef srceProf,
  33.                                   CMProfileRef destProf,
  34.                                   Rect *rect ) ;
  35.  
  36.  
  37. #endif
  38.