upm/src/max44000/javaupm_max44000.i
Stefan Andritoiu dddba3e8a4 java: Added auto load library code in upm SWIG interfaces
Signed-off-by: Stefan Andritoiu <stefan.andritoiu@intel.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2015-11-24 14:36:17 -08:00

19 lines
378 B
OpenEdge ABL

%module javaupm_max44000
%include "../upm.i"
%{
#include "max44000.h"
%}
%include "max44000.h"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_max44000");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}