Hi Again...
That works... my "hello world" is now working... Still the second question...
Can i do a shared library with constructor in c++.. OO Based?
Im actually making a sharedlib using "Palm OS Shared Library" option in constructor.
Don't you mean "CodeWarrior"? "Constructor" is the resource editor from PalmSource that's usually used with CodeWarrior for Palm OS.
The subset of C++ that doesn't rely on global variables can be used in a 68K shared library. This means no RTTI, no exceptions, and no virtual functions. Also, you can't expose a C++ member function as a shared library entry point because all shared library entry points have to have a libRef as the first parameter, and that conflicts with the hidden "this" pointer parameter.
-- Ben Combee, senior DTS engineer, PalmSource, Inc. Read "Combee on Palm OS" at http://palmos.combee.net/
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
