summaryrefslogtreecommitdiff
path: root/src/lib/ecore_input_evas/ecore_input_evas_api.h
blob: afb00ead0ba01d3b88fe64e87faf746fb73b6d3d (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_INPUT_EVAS_API_H
#define _EFL_ECORE_INPUT_EVAS_API_H

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

#ifdef _WIN32
# ifndef ECORE_INPUT_EVAS_STATIC
#  ifdef ECORE_INPUT_EVAS_BUILD
#   define ECORE_INPUT_EVAS_API __declspec(dllexport)
#  else
#   define ECORE_INPUT_EVAS_API __declspec(dllimport)
#  endif
# else
#  define ECORE_INPUT_EVAS_API
# endif
# define ECORE_INPUT_EVAS_API_WEAK
#else
# ifdef __GNUC__
#  if __GNUC__ >= 4
#   define ECORE_INPUT_EVAS_API __attribute__ ((visibility("default")))
#   define ECORE_INPUT_EVAS_API_WEAK __attribute__ ((weak))
#  else
#   define ECORE_INPUT_EVAS_API
#   define ECORE_INPUT_EVAS_API_WEAK
#  endif
# else
#  define ECORE_INPUT_EVAS_API
#  define ECORE_INPUT_EVAS_API_WEAK
# endif
#endif

#endif