Signed-off-by: Stefan Andritoiu <stefan.andritoiu@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
40 lines
896 B
OpenEdge ABL
40 lines
896 B
OpenEdge ABL
%module javaupm_mma7455
|
|
%include "../upm.i"
|
|
%include "typemaps.i"
|
|
%include "arrays_java.i";
|
|
%include "../java_buffer.i"
|
|
|
|
%apply short *OUTPUT { short * ptrX, short * ptrY, short * ptrZ };
|
|
|
|
%typemap(jni) short* "jshortArray"
|
|
%typemap(jstype) short* "short[]"
|
|
%typemap(jtype) short* "short[]"
|
|
|
|
%typemap(javaout) short* {
|
|
return $jnicall;
|
|
}
|
|
|
|
%typemap(out) short *readData {
|
|
$result = JCALL1(NewShortArray, jenv, 3);
|
|
JCALL4(SetShortArrayRegion, jenv, $result, 0, 3, (const signed short*)$1);
|
|
delete [] $1;
|
|
}
|
|
|
|
%ignore readData(short *, short *, short *);
|
|
|
|
%{
|
|
#include "mma7455.h"
|
|
%}
|
|
|
|
%include "mma7455.h"
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_mma7455");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%} |