aboutsummaryrefslogtreecommitdiff
path: root/src/mma7455/javaupm_mma7455.i
blob: 3d4724ba622feb4f46d9628f4ac986a182251786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%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"