Reputation: 91
I have a Java project running under windows. It uses several native functions from a .DLL file via JNI. Everything works well under 32bit windows.
In order to support 64bit windows, I need to deal with the following questions first:
Thank you very much!
Upvotes: 0
Views: 966
Reputation: 533432
A 64-bit OS can run a 32-bit or 64-bit application.
A 32-bit application can only load 32-bit DLL or shared libraries.
A 64-bit application can only load 64-bit DLL or shared libraries.
Upvotes: 1