(i) Does Metroworks provide full MSL support for Palm OS? (All functionalities documented in Section 1). If yes, please advise the method to procure it.
No. As I've stated twice already, partial MSL support is supplied for 68K applications, and minimal MSL support is supplied for PACE Native Objects.
(ii) If not, please clarify the Palm OS/MSL support for Wide char. We have found that wchar_t data type is supported but all the wide char related functions are not available in MSL library e.g. wcscpy, wcslen etc.
You are correct. No wide character functions have been implemented for Palm OS.
(iii) We are trying to overload new operator and would like to increase the arguments to be passed to new operator. We want to have a prototype like this:
" void* operator new(int a,int b); "
We are getting "illegal operator declaration" error on compilation. Can anybody let us know what is wrong in this prototype.
This is not legal C++. While you can make a placement new operator, the first parameter has to match the C++ standard. This is a std::size_t type, which doesn't match "int".
--
Ben Combee <[EMAIL PROTECTED]>
CodeWarrior for Palm OS technical lead
Palm OS programming help @ www.palmoswerks.com
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
