Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Cyberdog Programmer's Kit / Part 3 - Cyberdog Reference
Chapter 6 - Types, Constants, and Global Functions / Programmer-Defined Functions


MyCyberItemResolved

Responds to notification that the Cyberdog item resolution process is complete.

void MyCyberItemResolved (OSErr err, 
CyberItem* item, 
Ptr userDataPtr);
err
An error code that indicates whether the Cyberdog item was resolved successfully.
item
A pointer to the Cyberdog item.
userDataPtr
A pointer to data that may be useful when a Cyberdog item is resolved.
DISCUSSION
This notification function is called when the Resolve method of a CyberItem subclass has finished trying to resolve a Cyberdog item. You register your notification function when you call the Resolve method. The value of the err parameter is noErr if the Cyberdog item was resolved successfully.

The userDataPtr parameter contains a pointer to data that may be useful when responding to notification that a Cyberdog item has been resolved. For example, this parameter might point to a method to be called if the Cyberdog item was resolved successfully.

SEE ALSO
The CyberItem::Resolve method (page 242).


Previous Book Contents Book Index Next

© Apple Computer, Inc.
13 JUL 1996