mirror of
https://github.com/eclipse/upm.git
synced 2025-03-26 02:10:02 +03:00

Signed-off-by: Serban Waltter <serban.waltter@rinftech.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
27 lines
582 B
OpenEdge ABL
27 lines
582 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="pyupm_new_interfaces") rhusb
|
|
#endif
|
|
|
|
%import "interfaces/new_interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_new_interfaces.*;
|
|
%}
|
|
|
|
%include "arrays_java.i";
|
|
%include "../java_buffer.i"
|
|
JAVA_JNI_LOADLIBRARY(javaupm_rhusb)
|
|
#endif
|
|
/* END Java syntax */
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
%{
|
|
#include "rhusb.hpp"
|
|
%}
|
|
%include "rhusb.hpp"
|
|
/* END Common SWIG syntax */
|