Continue getting rid of "proxy" terminology, there is no proxy when using C module, so it's confusing to use this term.
18 lines
470 B
Text
18 lines
470 B
Text
/* -----------------------------------------------------------------------------
|
|
* cheader.swg
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
#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 <stddef.h>
|