git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7234 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
311 B
C
14 lines
311 B
C
# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
|
|
# if defined(STATIC_LINKED)
|
|
# define SWIGEXPORT
|
|
# else
|
|
# define SWIGEXPORT __declspec(dllexport)
|
|
# endif
|
|
# else
|
|
|
|
static void *ptr = 0;
|
|
SWIGEXPORT void *
|
|
SWIG_ReturnGlobalTypeList(void *t) {
|
|
if (!ptr && !t) ptr = t;
|
|
return ptr;
|
|
}
|