diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-17 08:50:42 +0100 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-17 09:58:20 +0100 |
commit | 4a84267d8637f31b62a389c32dbd02d7b3baf97d (patch) | |
tree | b41c77af079541d6c2d460b97349939e7c59366f /src/lib/emile/Emile.h | |
parent | a2385e2ebc6a3bc26e9a79bd17f44a4cd0717887 (diff) |
emile: cleanup header from useless cruft.
Diffstat (limited to 'src/lib/emile/Emile.h')
-rw-r--r-- | src/lib/emile/Emile.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/lib/emile/Emile.h b/src/lib/emile/Emile.h index acaa509a3b..88e2c627e3 100644 --- a/src/lib/emile/Emile.h +++ b/src/lib/emile/Emile.h | |||
@@ -16,14 +16,6 @@ | |||
16 | * License along with this library; | 16 | * License along with this library; |
17 | * if not, see <http://www.gnu.org/licenses/>. | 17 | * if not, see <http://www.gnu.org/licenses/>. |
18 | */ | 18 | */ |
19 | |||
20 | /** | ||
21 | * @brief Emile serialization, compression and ciphering public API calls. | ||
22 | * | ||
23 | * These routines are used for Emile Library interaction | ||
24 | * | ||
25 | * @date 2013 (created) | ||
26 | */ | ||
27 | #ifndef EMILE_H_ | 19 | #ifndef EMILE_H_ |
28 | #define EMILE_H_ | 20 | #define EMILE_H_ |
29 | 21 | ||
@@ -31,33 +23,41 @@ | |||
31 | 23 | ||
32 | #ifdef EAPI | 24 | #ifdef EAPI |
33 | # undef EAPI | 25 | # undef EAPI |
34 | #endif /* ifdef EAPI */ | 26 | #endif |
35 | 27 | ||
36 | #ifdef _WIN32 | 28 | #ifdef _WIN32 |
37 | # ifdef EFL_EMILE_BUILD | 29 | # ifdef EFL_EMILE_BUILD |
38 | # ifdef DLL_EXPORT | 30 | # ifdef DLL_EXPORT |
39 | # define EAPI __declspec(dllexport) | 31 | # define EAPI __declspec(dllexport) |
40 | # else /* ifdef DLL_EXPORT */ | 32 | # else |
41 | # define EAPI | 33 | # define EAPI |
42 | # endif /* ! DLL_EXPORT */ | 34 | # endif |
43 | # else /* ifdef EFL_EET_BUILD */ | 35 | # else |
44 | # define EAPI __declspec(dllimport) | 36 | # define EAPI __declspec(dllimport) |
45 | # endif /* ! EFL_EET_BUILD */ | 37 | # endif |
46 | #else /* ifdef _WIN32 */ | 38 | #else |
47 | # ifdef __GNUC__ | 39 | # ifdef __GNUC__ |
48 | # if __GNUC__ >= 4 | 40 | # if __GNUC__ >= 4 |
49 | # define EAPI __attribute__ ((visibility("default"))) | 41 | # define EAPI __attribute__ ((visibility("default"))) |
50 | # else /* if __GNUC__ >= 4 */ | 42 | # else |
51 | # define EAPI | 43 | # define EAPI |
52 | # endif /* if __GNUC__ >= 4 */ | 44 | # endif |
53 | # else /* ifdef __GNUC__ */ | 45 | # else |
54 | # define EAPI | 46 | # define EAPI |
55 | # endif /* ifdef __GNUC__ */ | 47 | # endif |
56 | #endif /* ! _WIN32 */ | 48 | #endif |
57 | 49 | ||
58 | #ifdef __cplusplus | 50 | #ifdef __cplusplus |
59 | extern "C" { | 51 | extern "C" { |
60 | #endif /* ifdef __cplusplus */ | 52 | #endif |
53 | |||
54 | /** | ||
55 | * @brief Emile serialization, compression and ciphering public API calls. | ||
56 | * | ||
57 | * These routines are used for Emile Library interaction | ||
58 | * | ||
59 | * @date 2013 (created) | ||
60 | */ | ||
61 | 61 | ||
62 | /** | 62 | /** |
63 | * @file Emile.h | 63 | * @file Emile.h |
@@ -112,6 +112,6 @@ EAPI int emile_shutdown(void); | |||
112 | 112 | ||
113 | #ifdef __cplusplus | 113 | #ifdef __cplusplus |
114 | } | 114 | } |
115 | #endif /* ifdef __cplusplus */ | 115 | #endif |
116 | 116 | ||
117 | #endif /* ifndef _EET_H */ | 117 | #endif |