Carbon


OTNotifyProcPtr

Header: OpenTransport.h Carbon status: Unsupported

typedef void(* OTNotifyProcPtr) (
    void *contextPtr, 
    OTEventCode code, 
    OTResult result, 
    void *cookie
);

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

void MyOTNotifyCallback (
    void *contextPtr, 
    OTEventCode code, 
    OTResult result, 
    void *cookie
);
CARBON NOTES

This is a function type for a callback. Use the type OTNotifyUPP instead.


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