git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4313 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
349 B
OpenEdge ABL
16 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"
|
|
|