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