mirror of https://github.com/swig/swig
17 lines
349 B
OpenEdge ABL
17 lines
349 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%{
|
|
#include "example.h"
|
|
%}
|
|
|
|
/* Let "Foo" objects be converted back and forth from TinyCLOS into
|
|
low-level CHICKEN SWIG procedures */
|
|
|
|
%typemap(clos_in) Foo * = SIMPLE_CLOS_OBJECT *;
|
|
%typemap(clos_out) Foo * = SIMPLE_CLOS_OBJECT *;
|
|
|
|
/* Let's just grab the original header file here */
|
|
%include "example.h"
|
|
|