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 theResolvemethod of aCyberItemsubclass has finished trying to resolve a Cyberdog item. You register your notification function when you call theResolvemethod. The value of theerrparameter isnoErrif the Cyberdog item was resolved successfully.The
userDataPtrparameter 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::Resolvemethod (page 242).