mirror of
https://github.com/eclipse/upm.git
synced 2025-07-02 09:51:14 +03:00
java: solved some SWIGTYPE issues
Signed-off-by: Andrei Vasiliu <andrei.vasiliu@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com> Conflicts: src/mma7455/mma7455.cxx src/mma7455/mma7455.h
This commit is contained in:

committed by
Mihai Tudor Panu

parent
ff42bd390f
commit
6cbddff31a
@ -1,5 +1,39 @@
|
||||
%module javaupm_st7735
|
||||
%include "../upm.i"
|
||||
%include "arrays_java.i"
|
||||
%include "typemaps.i"
|
||||
%include "stdint.i"
|
||||
|
||||
%ignore m_map;
|
||||
%ignore Bcmd;
|
||||
%ignore font;
|
||||
%ignore Rcmd1;
|
||||
%ignore Rcmd2green;
|
||||
%ignore Rcmd2red;
|
||||
%ignore Rcmd3;
|
||||
|
||||
|
||||
/*
|
||||
%typemap(jni) unsigned char[] "jbyteArray";
|
||||
%typemap(jtype) unsigned char[] "byte[]";
|
||||
%typemap(jstype) unsigned char[] "byte[]";
|
||||
|
||||
%typemap(out) unsigned char[] {
|
||||
$result = SWIG_JavaArrayOutSchar(jenv, reinterpret_cast<signed char*>($1), sizeof($1));
|
||||
}
|
||||
%typemap(freearg) unsigned char* {
|
||||
JCALL3(ReleaseByteArrayElements, jenv, $input, reinterpret_cast<jbyte*>($1), 0);
|
||||
}
|
||||
*/
|
||||
%typemap(jni) unsigned char* "jbyteArray";
|
||||
%typemap(jtype) unsigned char* "byte[]";
|
||||
%typemap(jstype) unsigned char* "byte[]";
|
||||
|
||||
%typemap(javain) unsigned char* "$javainput"
|
||||
|
||||
%typemap(in) unsigned char* {
|
||||
$1 = (unsigned char *)JCALL2(GetByteArrayElements, jenv, $input, NULL);
|
||||
}
|
||||
|
||||
%include "gfx.h"
|
||||
%{
|
||||
|
Reference in New Issue
Block a user