git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10763 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
240 B
OpenEdge ABL
14 lines
240 B
OpenEdge ABL
/* File : example.i */
|
|
/** Let's document module Example! */
|
|
%module(directors="1") example
|
|
%{
|
|
#include "example.h"
|
|
%}
|
|
|
|
%include "std_string.i"
|
|
|
|
/* turn on director wrapping Callback */
|
|
%feature("director") Callback;
|
|
|
|
%include "example.h"
|
|
|