summaryrefslogtreecommitdiff
path: root/src/lib/eo/eo_internal.h
blob: f57d2698d58edf8d58c5d9354c3453c350c0a2ab (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
35
36
37
38
39
40
41
#ifndef _EO_INTERNAL_H_
#define _EO_INTERNAL_H_

#ifdef EAPI
# undef EAPI
#endif

#ifdef _WIN32
# ifdef EFL_BUILD
#  ifdef DLL_EXPORT
#   define EAPI __declspec(dllexport)
#  else
#   define EAPI
#  endif
# else
#  define EAPI __declspec(dllimport)
# endif
#else
# ifdef __GNUC__
#  if __GNUC__ >= 4
#   define EAPI __attribute__ ((visibility("default")))
#  else
#   define EAPI
#  endif
# else
#  define EAPI
# endif
#endif

typedef unsigned char Eina_Bool;
typedef struct _Eo_Opaque Eo;

EAPI void ___efl_auto_unref_set(Eo *obj_id, Eina_Bool enable);

EAPI int ___efl_ref2_count(const Eo *obj_id);
EAPI void ___efl_ref2_reset(const Eo *obj_id);

#undef EAPI
#define EAPI

#endif