all: Simplify definition of EAPI

This will help in the transition from Autotools to Meson. This has been
tested on Windows for which EFL_XXX_BUILD were first introduced.
This commit is contained in:
Vincent Torri 2018-01-18 18:04:03 +09:00 committed by Jean-Philippe Andre
parent 734359f7a6
commit 3f7b28f9c8
1 changed files with 4 additions and 4 deletions

View File

@ -10,15 +10,15 @@
#define EOAPI EAPI EAPI_WEAK
#ifdef _WIN32
# ifdef EFL_EO_BUILD
# ifdef EFL_BUILD
# ifdef DLL_EXPORT
# define EAPI __declspec(dllexport)
# else
# define EAPI
# endif /* ! DLL_EXPORT */
# endif
# else
# define EAPI __declspec(dllimport)
# endif /* ! EFL_EO_BUILD */
# endif
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
@ -29,7 +29,7 @@
# else
# define EAPI
# endif
#endif /* ! _WIN32 */
#endif
#include "example_numberwrapper.eo.h"