Also handle `char *' for both input and output sets.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@315 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
4b0d0af5ea
commit
97180ec23b
1 changed files with 4 additions and 2 deletions
|
|
@ -15,7 +15,8 @@
|
|||
%typemap (guile, op) unsigned short { MK_SIMPLE_MAP (gh_scm2ulong); } \
|
||||
%typemap (guile, op) unsigned long { MK_SIMPLE_MAP (gh_scm2ulong); } \
|
||||
%typemap (guile, op) float { MK_SIMPLE_MAP (gh_scm2double); } \
|
||||
%typemap (guile, op) double { MK_SIMPLE_MAP (gh_scm2double); }
|
||||
%typemap (guile, op) double { MK_SIMPLE_MAP (gh_scm2double); } \
|
||||
%typemap (guile, op) char * { MK_SIMPLE_MAP (gswig_scm2str); }
|
||||
|
||||
#define SIMPLE_OUT_MAP_SET(op) \
|
||||
%typemap (guile, op) bool { MK_SIMPLE_MAP (gh_bool2scm); } \
|
||||
|
|
@ -27,7 +28,8 @@
|
|||
%typemap (guile, op) unsigned short { MK_SIMPLE_MAP (gh_ulong2scm); } \
|
||||
%typemap (guile, op) unsigned long { MK_SIMPLE_MAP (gh_ulong2scm); } \
|
||||
%typemap (guile, op) float { MK_SIMPLE_MAP (gh_double2scm); } \
|
||||
%typemap (guile, op) double { MK_SIMPLE_MAP (gh_double2scm); }
|
||||
%typemap (guile, op) double { MK_SIMPLE_MAP (gh_double2scm); } \
|
||||
%typemap (guile, op) char * { MK_SIMPLE_MAP (gh_str02scm); }
|
||||
|
||||
/*
|
||||
* Declaration start here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue