massive typemap unification

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7676 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-10-18 13:24:15 +00:00
commit 7e5e4fd1f9
144 changed files with 6378 additions and 7248 deletions

View file

@ -19,8 +19,10 @@ SWIGEXPORT extern int externexport(int);
extern int SWIGSTDCALL externstdcall(int);
%{
// externimport ought to be using MYDLLIMPORT and compiled into another dll, but that is
// a bit tricky to do in the test framework
/*
externimport ought to be using MYDLLIMPORT and compiled into another dll, but that is
a bit tricky to do in the test framework
*/
SWIGEXPORT extern int externimport(int i) { return i; }
SWIGEXPORT extern int externexport(int i) { return i; }
extern int SWIGSTDCALL externstdcall(int i) { return i; }