Carbon


OTListSearchProcPtr

Header: OpenTransport.h Carbon status: Unsupported

typedef Boolean(* OTListSearchProcPtr) (
    const void *ref, 
    OTLink *linkToCheck
);

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

Boolean MyOTListSearchCallback (
    const void *ref, 
    OTLink *linkToCheck
);
CARBON NOTES

This is a function type for user callback. Use the type OTListSearchUPP instead.


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