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

Signed-off-by: Zion Orent <zorent@ics.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
19 lines
321 B
OpenEdge ABL
19 lines
321 B
OpenEdge ABL
%module pyupm_mma7660
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
|
|
/* Send "int *" and "float *" to python as intp and floatp */
|
|
%pointer_functions(int, intp);
|
|
%pointer_functions(float, floatp);
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
#ifdef DOXYGEN
|
|
%include "mma7660_doc.i"
|
|
#endif
|
|
|
|
%include "mma7660.h"
|
|
%{
|
|
#include "mma7660.h"
|
|
%}
|