I have a .net dll which has some functions that i need to call from a java program. This is the code that I have used which is giving me this error."Exception in thread "main" java.lang.UnsatisfiedLinkError:" but the dll loads fine. s
static {
try {
System.load("mydotnet.dll");
System.out.println("loaded");
} catch (UnsatisfiedLinkError e) {
System.err.println(e);
}
}
private static native boolean SC_Start();