Re: calling C DlLL functions
Hi
1. To call C++ functions from Java u have to create a DLL of ure C++ functions. For that, u can use JNI. A very good tutorial
(with example) is available at java.sun.com. Search for "JNI" on the site and u'll find it.
2. Since there are no pointers in Java, so u can not replace char * with anything. Using String can be one option. In the advance JNI
topics on java.sun.com, they have mentioned few tips. You can find more help in this regard by searching for JNI tutorials on web
3. I am not sure about this.. but i think there is nothin much to be done except that u have to include the API decleration
in ure DLL as well