eina: fixup EAPI definition.

This commit is contained in:
Cedric BAIL 2017-12-19 09:54:45 -08:00
parent 166fcb0fa1
commit 98aa1a4eb1
1 changed files with 41 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#ifndef EINA_INTERNAL_H
#define EINA_INTERNAL_H
# define EINA_INTERNAL_H
/*
* eina_internal.h
@ -8,9 +8,49 @@
* not stable API.
*/
#ifdef EAPI
# undef EAPI
#endif
#ifdef _WIN32
# ifdef EFL_EINA_BUILD
# ifdef DLL_EXPORT
# define EAPI __declspec(dllexport)
# else
# define EAPI
# endif /* ! DLL_EXPORT */
# else
# define EAPI __declspec(dllimport)
# endif /* ! EFL_EINA_BUILD */
# define EAPI_WEAK
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default")))
# define EAPI_WEAK __attribute__ ((weak))
# else
# define EAPI
# define EAPI_WEAK
# endif
# else
/**
* @def EAPI
* @brief Used to export functions (by changing visibility).
*/
# define EAPI
# endif
#endif
/**
* @brief Cancels all pending promise/futures.
*
* Internal function. Do not use.
*
* @internal
*/
EAPI void __eina_promise_cancel_all(void);
#undef EAPI
#define EAPI
#endif