blob: 173c4a6667ce5d7d0070c5134c4bd792b3486a65 [file] [log] [blame]
%module javaupm_si114x
%include "../upm.i"
%include "cpointer.i"
%{
#include "si114x.h"
%}
%include "si114x.h"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_si114x");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}