From: "Sean Charles" <[EMAIL PROTECTED]> > > try this...skeletal but you should get the idea...it shows a general > callback that returns void and takes a UInt16 and a Char* in this case...
I know you're trying to help, Sean, but it would be good to restrict this list to Palm issues, and not get into C++. > ((*this).*sg_FnTable[fnIDToCall])( arg1, arg2P ); Having said that <g>, I find the following a tiny bit more readable: (this->*sg_FnTable[fnIDToCall])( arg1, arg2P ); Never did understand why 'this' is necessary. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
