Add EINTERN

All functions not static in modules should be EINTERN, exepect
e_modapi_*

SVN revision: 45446
This commit is contained in:
Sebastian Dransfeld 2010-01-22 20:00:07 +00:00
parent 62b8ceb7c7
commit e2ba9a34b9
1 changed files with 13 additions and 0 deletions

View File

@ -123,6 +123,19 @@ void *alloca (size_t);
# endif
#endif
#ifdef EINTERN
#undef EINTERN
#endif
#ifdef __GNUC__
# if __GNUC__ >= 4
# define EINTERN __attribute__ ((visibility("hidden")))
# else
# define EINTERN
# endif
#else
# define EINTERN
#endif
typedef struct _E_Before_Idler E_Before_Idler;
typedef struct _E_Rect E_Rect;