mirror of
https://github.com/eclipse/upm.git
synced 2025-07-05 03:11:15 +03:00
SWIG: Added java swig interface files
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
23
src/max44009/javaupm_max44009.i
Normal file
23
src/max44009/javaupm_max44009.i
Normal file
@ -0,0 +1,23 @@
|
||||
%module javaupm_max44009
|
||||
%include "../upm.i"
|
||||
%include "arrays_java.i";
|
||||
%include "../java_buffer.i"
|
||||
%include "cpointer.i"
|
||||
%include "typemaps.i"
|
||||
|
||||
%{
|
||||
#include "max44009.h"
|
||||
%}
|
||||
|
||||
%include "max44009.h"
|
||||
|
||||
%pragma(java) jniclasscode=%{
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("javaupm_max44009");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. \n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
%}
|
Reference in New Issue
Block a user