Signed-off-by: Petre Eftime <petre.p.eftime@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
20 lines
371 B
OpenEdge ABL
20 lines
371 B
OpenEdge ABL
%module javaupm_rpr220
|
|
%include "../upm.i"
|
|
|
|
|
|
%{
|
|
#include "rpr220.h"
|
|
%}
|
|
%include "rpr220.h"
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_rpr220");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%}
|