I'm a Java developer.
I have a source code of a project in C/C++, which has an interface in C.
I need to wrap it into Java. I guess I'll use JNI (Edit : or JNA would be used).
My question is :
What is the "wrappable" part? Should I wrap source code or the compiled version?
For the fact that I need to access to the interface (*.h), should I wrap :
- *.DLL
- *.LIB
- *.h
Thank you a lot.