mirror of
https://github.com/eclipse/upm.git
synced 2025-03-23 08:57:30 +03:00
22 lines
413 B
OpenEdge ABL
22 lines
413 B
OpenEdge ABL
![]() |
%module javaupm_e50hx
|
||
|
%include "../upm.i"
|
||
|
%include "typemaps.i"
|
||
|
|
||
|
%include "bacnetmstp.h"
|
||
|
%include "e50hx.h"
|
||
|
%{
|
||
|
#include "e50hx.h"
|
||
|
%}
|
||
|
|
||
|
|
||
|
%pragma(java) jniclasscode=%{
|
||
|
static {
|
||
|
try {
|
||
|
System.loadLibrary("javaupm_e50hx");
|
||
|
} catch (UnsatisfiedLinkError e) {
|
||
|
System.err.println("Native code library failed to load. \n" + e);
|
||
|
System.exit(1);
|
||
|
}
|
||
|
}
|
||
|
%}
|