Unloading dll files

Hello people.

I have a C++ dll file that is made of many different class. Am stuck at how to arrive at an instance of every class. In other words am not able to strip the dll file into classes that it is comprised of.

Am using jniwrapper-3.5 and winpack-3.5. So am not really worried about writing the .h files.

any help would be greatly appreciated.

Thanks,

Kay

[399 byte] By [avaj_rocksa] at [2007-11-26 18:13:55]
# 1
JNI is a C - not C++ interface. If you want to use C++ objects, then your DLL is going to have to create those instances and keep around references to them. When you then call a native method (via a C subroutine), your C/C++ code can locate and use the appropriate instances.
bschauwejavaa at 2007-7-9 5:47:10 > top of Java-index,Java HotSpot Virtual Machine,Specifications...