[EMAIL PROTECTED] wrote: > How I may to use a funcion of Mathlib in my shared library (PODS)? > > I would like know how to use the Mathlib calling it from my library, and too > how to use the "mathlib source code" into my source code.
You can download the MathLib .prc file and documentation here: http://www.radiks.net/~rhuebner/mathlib.html I'm calling it from an application (not a library), and it's really simple to use. There is a MathLib.h file that needs to be included, and MathLib.c that includes the math library function call stubs, to convert MathLib calls into C library calls (e.g., MatLibCos() becomes cos()). Then there is just a little bit of startup/exit code to load/unload the library. It's all in the documentation! Jay Ts -- There is no path to happiness. Happiness is the path. -- The Buddha -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
