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