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

Signed-off-by: Stefan Andritoiu <stefan.andritoiu@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
24 lines
500 B
OpenEdge ABL
24 lines
500 B
OpenEdge ABL
%module javaupm_hm11
|
|
%include "../upm.i"
|
|
%include "carrays.i"
|
|
%include "../java_buffer.i"
|
|
|
|
%{
|
|
#include "hm11.h"
|
|
speed_t int_B9600 = B9600;
|
|
%}
|
|
|
|
%include "hm11.h"
|
|
speed_t int_B9600 = B9600;
|
|
%array_class(char, charArray);
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_hm11");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%} |