mirror of
https://github.com/eclipse/upm.git
synced 2025-03-26 02:10:02 +03:00
15 lines
312 B
OpenEdge ABL
15 lines
312 B
OpenEdge ABL
%module jsupm_bma250e
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
%include "../upm_vectortypes.i"
|
|
|
|
/* Send "int *" and "float *" to JavaScript as intp and floatp */
|
|
%pointer_functions(int, intp);
|
|
%pointer_functions(float, floatp);
|
|
|
|
%include "bma250e_defs.h"
|
|
%include "bma250e.hpp"
|
|
%{
|
|
#include "bma250e.hpp"
|
|
%}
|