Important: The information in this document is obsolete and should not be used for new development.
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 theResolve
method of aCyberItem
subclass has finished trying to resolve a Cyberdog item. You register your notification function when you call theResolve
method. The value of theerr
parameter isnoErr
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
TheCyberItem::Resolve
method (page 242).