mirror of
https://github.com/eclipse/upm.git
synced 2025-03-23 17:00:03 +03:00

Renamed header file, updated header filename in interface files, sources, and CmakeLists file. Signed-off-by: Noel Eck <noel.eck@intel.com>
23 lines
451 B
OpenEdge ABL
23 lines
451 B
OpenEdge ABL
%module javaupm_ds2413
|
|
%include "../upm.i"
|
|
%include "carrays.i"
|
|
%include "std_string.i"
|
|
|
|
%{
|
|
#include "ds2413.hpp"
|
|
%}
|
|
|
|
%include "ds2413.hpp"
|
|
%array_class(char, charArray);
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_ds2413");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%}
|