JNA and DLLs are completely new territory for me... I have a custom DLL that has a function with this declaration:
int myfunc (const char*);
The dll compiles fine under MinGW with the following command:
>gcc -shared -omydll.dll mydll.c -lgdi32
However, loading it with JNA fails because it can't find the function within the DLL.
public interface mydll extends StdCallLibrary {
mydll INSTANCE = (mydll)Native.loadLibrary("mydll", mydll.class);
int myfunc (String arg);
}
I did some research and it seems that this particular error has something to do with the calling procedure of the DLL functions. I've seen the __stdcall and the __cdecl procedures. I also saw that many DLL functions put __declspec(dllexport) in front of their function declarations/implementations (i have no idea what this means or what it does). So, since JNA seems to like the __stdcall procedure better, now my function looks like this:
__declspec(dllexport) int __stdcall myfunc (const char*);
Which looks super-complicated, but does no better than anything else i've tried. Using a HashMap to add the underscore prefix and the @4 suffix didn't work either:
mydll INSTANCE = (mydll)Native.loadLibrary("mydll", mydll.class, new HashMap () {{
add("myfunc", "_myfunc@4");
}});
The JNA documentation has been absolutely no help. I honestly have no idea what i'm doing anymore.
-Djna.library.path=<path location of your DLLs/libraries>? – eee Apr 24 '12 at 13:18