Carbon


MatchImageProcPtr

Header: CMScriptingPlugin.h Carbon status: Supported

typedef CMError(* MatchImageProcPtr) (
    const FSSpec *specFrom, 
    const FSSpec *specInto, 
    UInt32 qual, 
    UInt32 srcIntent, 
    CMProfileRef srcProf, 
    CMProfileRef dstProf, 
    CMProfileRef prfProf, 
    UInt32 matchFlags
);

You would declare your function like this if you were to name it MyMatchImageCallback:

CMError MyMatchImageCallback (
    const FSSpec *specFrom, 
    const FSSpec *specInto, 
    UInt32 qual, 
    UInt32 srcIntent, 
    CMProfileRef srcProf, 
    CMProfileRef dstProf, 
    CMProfileRef prfProf, 
    UInt32 matchFlags
);

© 2000 Apple Computer, Inc. (Last Updated 7/17/2000)