Update of /cvsroot/swig/SWIG/Lib/guile
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10848/Lib/guile
Modified Files:
guile_gh_run.swg
Log Message:
Uniform handling of SWIGEXPORT across SWIG.
Index: guile_gh_run.swg
===================================================================
RCS file: /cvsroot/swig/SWIG/Lib/guile/guile_gh_run.swg,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** guile_gh_run.swg 26 Feb 2005 08:47:16 -0000 1.10
--- guile_gh_run.swg 27 May 2005 22:38:20 -0000 1.11
***************
*** 42,65 ****
SCM_EOL, SCM_BOOL_F); else
- #ifndef SWIGEXPORT
- # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
- # if defined(_MSC_VER) || defined(__GNUC__)
- # if defined(STATIC_LINKED)
- # define SWIGEXPORT(a) a
- # else
- # define SWIGEXPORT(a) __declspec(dllexport) a
- # endif
- # else
- # if defined(__BORLANDC__)
- # define SWIGEXPORT(a) a _export
- # else
- # define SWIGEXPORT(a) a
- # endif
- # endif
- # else
- # define SWIGEXPORT(a) a
- # endif
- #endif
-
/* SCM_CHAR and SCM_CHARP were introduced in Guile 1.4; the following is for
1.3.4 compatibility. */
--- 42,45 ----
***************
*** 118,123 ****
}
#else
! SWIGEXPORT(swig_module_info *) SWIG_Guile_GetModule();
! SWIGEXPORT(void) SWIG_Guile_SetModule(swig_module_info *pointer);
#endif
--- 98,103 ----
}
#else
! SWIGEXPORT swig_module_info * SWIG_Guile_GetModule();
! SWIGEXPORT void SWIG_Guile_SetModule(swig_module_info *pointer);
#endif
|