summaryrefslogtreecommitdiff
path: root/src/lib/efl_canvas_wl/efl_canvas_wl_api.h
blob: 349a3bc8502f82c93f9cf85865493376e2b147e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef _EFL_EFL_CANVAS_WL_API_H
#define _EFL_EFL_CANVAS_WL_API_H

#ifdef EFL_CANVAS_WL_API
#error EFL_CANVAS_WL_API should not be already defined
#endif

#ifdef _WIN32
# ifndef EFL_CANVAS_WL_STATIC
#  ifdef EFL_CANVAS_WL_BUILD
#   define EFL_CANVAS_WL_API __declspec(dllexport)
#  else
#   define EFL_CANVAS_WL_API __declspec(dllimport)
#  endif
# else
#  define EFL_CANVAS_WL_API
# endif
# define EFL_CANVAS_WL_API_WEAK
#else
# ifdef __GNUC__
#  if __GNUC__ >= 4
#   define EFL_CANVAS_WL_API __attribute__ ((visibility("default")))
#   define EFL_CANVAS_WL_API_WEAK __attribute__ ((weak))
#  else
#   define EFL_CANVAS_WL_API
#   define EFL_CANVAS_WL_API_WEAK
#  endif
# else
#  define EFL_CANVAS_WL_API
#  define EFL_CANVAS_WL_API_WEAK
# endif
#endif

#endif