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