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