swig/SWIG/Lib/guile/guile_gh.swg
John Lenz 4645346381 Removed ability to share type information by C linking
All type sharing happens through a global variable in the target language.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6390 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-10-16 18:23:59 +00:00

20 lines
348 B
C

/* -*- c -*-
This SWIG interface file is processed if the Guile module is run
with gh_ flavor.
*/
#define SWIGGUILE_GH
%runtime "guile_gh_run.swg"
%include "guile.i"
%init %{
static int _swig_init = 0;
if (!_swig_init) {
SWIG_Guile_Init();
SWIG_Guile_RegisterTypes(swig_types, swig_types_initial);
_swig_init = 1;
}
%}