mirror of
https://github.com/eclipse/upm.git
synced 2025-03-20 07:27:29 +03:00
14 lines
272 B
OpenEdge ABL
14 lines
272 B
OpenEdge ABL
![]() |
%module jsupm_dfrec
|
||
|
%include "../upm.i"
|
||
|
%include "std_string.i"
|
||
|
%include "cpointer.i"
|
||
|
|
||
|
/* Send "int *" and "float *" to JavaScript as intp and floatp */
|
||
|
%pointer_functions(int, intp);
|
||
|
%pointer_functions(float, floatp);
|
||
|
|
||
|
%include "dfrec.hpp"
|
||
|
%{
|
||
|
#include "dfrec.hpp"
|
||
|
%}
|