summaryrefslogtreecommitdiff
path: root/src/lib/ecore_wayland/ecore_wayland_api.h
blob: b4b034eb33ab0c6119cf500ba4c3d2a660a422d6 (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_ECORE_WAYLAND_API_H
#define _EFL_ECORE_WAYLAND_API_H

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

#ifdef _WIN32
# ifndef ECORE_WAYLAND_STATIC
#  ifdef ECORE_WAYLAND_BUILD
#   define ECORE_WAYLAND_API __declspec(dllexport)
#  else
#   define ECORE_WAYLAND_API __declspec(dllimport)
#  endif
# else
#  define ECORE_WAYLAND_API
# endif
# define ECORE_WAYLAND_API_WEAK
#else
# ifdef __GNUC__
#  if __GNUC__ >= 4
#   define ECORE_WAYLAND_API __attribute__ ((visibility("default")))
#   define ECORE_WAYLAND_API_WEAK __attribute__ ((weak))
#  else
#   define ECORE_WAYLAND_API
#   define ECORE_WAYLAND_API_WEAK
#  endif
# else
#  define ECORE_WAYLAND_API
#  define ECORE_WAYLAND_API_WEAK
# endif
#endif

#endif