mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 17:30:01 +03:00
19 lines
382 B
OpenEdge ABL
19 lines
382 B
OpenEdge ABL
%module javaupm_eldriver
|
|
%include "../upm.i"
|
|
|
|
%{
|
|
#include "eldriver.hpp"
|
|
%}
|
|
|
|
%include "eldriver.hpp"
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_eldriver");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%} |