Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java JNA interface auto generator

I have a third-party DLL, which consists of fairly a big number of interrelated classes (maybe written in C++) , the Java Native Access package wants the programmer to write an interface for each and every class within the DLL, In VB.net the Object Explorer makes life a piece of cake; however, in java i couldn't find such a tool.

Are there any tools that takes the DLL file and generate all needed JNA interfaces ?

Best Regards

like image 336
MrFadelK Avatar asked Sep 16 '25 16:09

MrFadelK


1 Answers

JNAerator can "compile" native headers in order to generate JNA mappings, with some limited C++ support.

like image 76
technomage Avatar answered Sep 18 '25 06:09

technomage