Stefan Starke
Stefan Starke

Reputation: 26

JNI Eclipse Plugin

Is there any kind of plugin that performs the task of writing a JNI-Wrapper around an existing C++ DLL?

Thanks!

Stefan

Upvotes: 1

Views: 1588

Answers (1)

NPE
NPE

Reputation: 500673

It isn't an Eclipse plugin, but you could take a look at SWIG.

From the documentation:

The Java extension to SWIG makes it very easy to plumb in existing C/C++ code for access from Java, as SWIG writes the Java Native Interface (JNI) code for you.

Upvotes: 1

Related Questions