Carbon


SCModalFilterProcPtr

Header: QuickTimeComponents.h Carbon status: Supported

typedef Boolean(* SCModalFilterProcPtr) (
    DialogRef theDialog, 
    EventRecord *theEvent, 
    SInt16 *itemHit, 
    SInt32 refcon
);

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

Boolean MySCModalFilterCallback (
    DialogRef theDialog, 
    EventRecord *theEvent, 
    SInt16 *itemHit, 
    SInt32 refcon
);

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