still no luck with this
manifest file:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.0
Created-By: 10.0-b19 (Sun Microsystems Inc.)
Main-Class: eidlibtest.Eid
Class-Path: lib/beidlib.jar lib/eidlib.jar
X-COMMENT: Main-Class will be added automatically by build
nothing there about the dll's
System.getProperty returns the windows/system32 directory where the dll's are located.
Actually this is in the code:
static
{
try
{
System.loadLibrary("beidlibjni");
}
catch (UnsatisfiedLinkError e)
{
System.err.println("Native code library eidlib failed to load.\n" + e);
System.exit(1);
}
}
I don't get the catch message (if I change the name of the dll that is to be loaded, I do), so I'm guessing this is not the problem.
However, further on in the code when a function of the dll is actually called, I get the error
man, this is bugging me!