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