Files
upm/src/cwlsxxa/javaupm_cwlsxxa.i

20 lines
402 B
OpenEdge ABL
Raw Normal View History

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