I created a test application that load a JNI DLL (native.dll).
However,
System.loadLibrary("native");
produces a runtime exception:
java.lang.UnsatisfiedLinkError: no native inshared library path
The DLL is pointed to in my autoexec.bat PATH statement. I also
tried other variations like specifying the full path
"d:\\jni\\native.dll", but I get the same runtime error.
What I'm I doing wrong?. I created the DLL using Borland C++ V5.
Thanx. Bernie.