Files
upm/src/ppd42ns/javaupm_ppd42ns.i

21 lines
405 B
OpenEdge ABL
Raw Normal View History

%module javaupm_ppd42ns
%include "../upm.i"
%include "ppd42ns_data.h"
%include "ppd42ns.hpp"
%{
#include "ppd42ns.hpp"
%}
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_ppd42ns");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}