Change it to:
theList [i] = (char*) MemPtrNew (1);
This just explicitly typecasts the void* pointer into a char* pointer, which is what you want.
.. or even better, do it the C++ way :
theList[i] = static_cast<char*>(MemPtrNew(1));
J�rgen
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
