git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@11189 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
No EOL
533 B
Text
20 lines
No EOL
533 B
Text
/* -----------------------------------------------------------------------------
|
|
* cproxy.swg
|
|
*
|
|
* Definitions of C specific preprocessor symbols for proxies.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
#ifndef SWIGIMPORT
|
|
# ifndef __GNUC__
|
|
# define __DLL_IMPORT __declspec(dllimport)
|
|
# else
|
|
# define __DLL_IMPORT __attribute__((dllimport)) extern
|
|
# endif
|
|
# if !defined (__WIN32__)
|
|
# define SWIGIMPORT extern
|
|
# else
|
|
# define SWIGIMPORT __DLL_IMPORT
|
|
# endif
|
|
#endif
|
|
|
|
#include <stdio.h> |