mirror of
https://github.com/eclipse/upm.git
synced 2025-07-05 03:11:15 +03:00
25 lines
506 B
OpenEdge ABL
25 lines
506 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="upm") htu21d
|
|
#endif
|
|
|
|
%import "interfaces/new_interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_new_interfaces.*;
|
|
%}
|
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_abp)
|
|
#endif
|
|
/* END Java syntax */
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
%{
|
|
#include "abp.hpp"
|
|
%}
|
|
%include "abp.hpp"
|
|
/* END Common SWIG syntax */
|