Carbon


ICMCompletionProcPtr

Header: ImageCompression.h Carbon status: Supported

typedef void(* ICMCompletionProcPtr) (
    OSErr result, 
    SInt16 flags, 
    SInt32 refcon
);

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

void MyICMCompletionCallback (
    OSErr result, 
    SInt16 flags, 
    SInt32 refcon
);

© 2000 Apple Computer, Inc. (Last Updated 6/26/2000)