diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-17 08:50:40 +0100 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-17 09:58:20 +0100 |
commit | 4b4bdd97236f5ed7b78b934c3dda8b13d10a731c (patch) | |
tree | 70ef8389b30a0dfa8918c2f00cbff2b37a47565a /src/lib/emile | |
parent | df20c9ff8e84024e9b6e5d9c36404f5de8796df1 (diff) |
emile: normalize version number to 1.14.
Diffstat (limited to 'src/lib/emile')
-rw-r--r-- | src/lib/emile/Emile.h | 4 | ||||
-rw-r--r-- | src/lib/emile/emile_cipher.h | 10 | ||||
-rw-r--r-- | src/lib/emile/emile_compression.h | 10 |
3 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/emile/Emile.h b/src/lib/emile/Emile.h index 35327f4672..29837a35fe 100644 --- a/src/lib/emile/Emile.h +++ b/src/lib/emile/Emile.h | |||
@@ -85,7 +85,7 @@ extern "C" { | |||
85 | * | 85 | * |
86 | * @return The new init count. Will be 0 if initialization failed. | 86 | * @return The new init count. Will be 0 if initialization failed. |
87 | * | 87 | * |
88 | * @since 1.14.0 | 88 | * @since 1.14 |
89 | */ | 89 | */ |
90 | EAPI int emile_init(void); | 90 | EAPI int emile_init(void); |
91 | 91 | ||
@@ -98,7 +98,7 @@ EAPI int emile_init(void); | |||
98 | * of the internal elements will be shutdown and any memory used freed. | 98 | * of the internal elements will be shutdown and any memory used freed. |
99 | * | 99 | * |
100 | * @return The new init count. | 100 | * @return The new init count. |
101 | * @since 1.14.0 | 101 | * @since 1.14 |
102 | */ | 102 | */ |
103 | EAPI int emile_shutdown(void); | 103 | EAPI int emile_shutdown(void); |
104 | 104 | ||
diff --git a/src/lib/emile/emile_cipher.h b/src/lib/emile/emile_cipher.h index 93dbc39e63..73298b4f40 100644 --- a/src/lib/emile/emile_cipher.h +++ b/src/lib/emile/emile_cipher.h | |||
@@ -14,7 +14,7 @@ | |||
14 | * | 14 | * |
15 | * Flags describing the implemented backend. | 15 | * Flags describing the implemented backend. |
16 | * | 16 | * |
17 | * @since 1.14.0 | 17 | * @since 1.14 |
18 | */ | 18 | */ |
19 | typedef enum _Emile_Cipher_Backend | 19 | typedef enum _Emile_Cipher_Backend |
20 | { | 20 | { |
@@ -44,14 +44,14 @@ typedef enum _Emile_Cipher_Algorithm | |||
44 | * @return EINA_TRUE on success, EINA_FALSE otherwise. | 44 | * @return EINA_TRUE on success, EINA_FALSE otherwise. |
45 | * @see emile_cipher_module_get | 45 | * @see emile_cipher_module_get |
46 | * | 46 | * |
47 | * @since 1.14.0 | 47 | * @since 1.14 |
48 | */ | 48 | */ |
49 | EAPI Eina_Bool emile_cipher_init(void); | 49 | EAPI Eina_Bool emile_cipher_init(void); |
50 | /** | 50 | /** |
51 | * Get the name of the current used backend. | 51 | * Get the name of the current used backend. |
52 | * | 52 | * |
53 | * @return the name of the current cipher backend. | 53 | * @return the name of the current cipher backend. |
54 | * @since 1.14.0 | 54 | * @since 1.14 |
55 | */ | 55 | */ |
56 | EAPI Emile_Cipher_Backend emile_cipher_module_get(void); | 56 | EAPI Emile_Cipher_Backend emile_cipher_module_get(void); |
57 | 57 | ||
@@ -64,7 +64,7 @@ EAPI Emile_Cipher_Backend emile_cipher_module_get(void); | |||
64 | * @param length The length of the symetric key to be used. | 64 | * @param length The length of the symetric key to be used. |
65 | * @return the ciphered buffer or NULL on error. | 65 | * @return the ciphered buffer or NULL on error. |
66 | * | 66 | * |
67 | * @since 1.14.0 | 67 | * @since 1.14 |
68 | */ | 68 | */ |
69 | EAPI Eina_Binbuf *emile_binbuf_cipher(Emile_Cipher_Algorithm algo, | 69 | EAPI Eina_Binbuf *emile_binbuf_cipher(Emile_Cipher_Algorithm algo, |
70 | const Eina_Binbuf *in, | 70 | const Eina_Binbuf *in, |
@@ -83,7 +83,7 @@ EAPI Eina_Binbuf *emile_binbuf_cipher(Emile_Cipher_Algorithm algo, | |||
83 | * have to check that the returned data make sense. You should also not treat | 83 | * have to check that the returned data make sense. You should also not treat |
84 | * them as safe. | 84 | * them as safe. |
85 | * | 85 | * |
86 | * @since 1.14.0 | 86 | * @since 1.14 |
87 | */ | 87 | */ |
88 | EAPI Eina_Binbuf *emile_binbuf_decipher(Emile_Cipher_Algorithm algo, | 88 | EAPI Eina_Binbuf *emile_binbuf_decipher(Emile_Cipher_Algorithm algo, |
89 | const Eina_Binbuf *in, | 89 | const Eina_Binbuf *in, |
diff --git a/src/lib/emile/emile_compression.h b/src/lib/emile/emile_compression.h index 891d5c481c..ba5332617f 100644 --- a/src/lib/emile/emile_compression.h +++ b/src/lib/emile/emile_compression.h | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | /** | 13 | /** |
14 | * Supported type of compression algorithm. | 14 | * Supported type of compression algorithm. |
15 | * @since 1.14.0 | 15 | * @since 1.14 |
16 | * | 16 | * |
17 | * @see emile_binbuf_compress() | 17 | * @see emile_binbuf_compress() |
18 | * @see emile_binbuf_uncompress() | 18 | * @see emile_binbuf_uncompress() |
@@ -27,7 +27,7 @@ typedef enum | |||
27 | 27 | ||
28 | /** | 28 | /** |
29 | * Compression level to apply. | 29 | * Compression level to apply. |
30 | * @since 1.14.0 | 30 | * @since 1.14 |
31 | * | 31 | * |
32 | * @see emile_binbuf_compress(); | 32 | * @see emile_binbuf_compress(); |
33 | */ | 33 | */ |
@@ -49,7 +49,7 @@ typedef enum | |||
49 | * @return On success it will return a buffer that contains | 49 | * @return On success it will return a buffer that contains |
50 | * the compressed data, @c NULL otherwise. | 50 | * the compressed data, @c NULL otherwise. |
51 | * | 51 | * |
52 | * @since 1.14.0 | 52 | * @since 1.14 |
53 | */ | 53 | */ |
54 | EAPI Eina_Binbuf *emile_binbuf_compress(const Eina_Binbuf *in, | 54 | EAPI Eina_Binbuf *emile_binbuf_compress(const Eina_Binbuf *in, |
55 | Emile_Compressor_Type t, | 55 | Emile_Compressor_Type t, |
@@ -64,7 +64,7 @@ EAPI Eina_Binbuf *emile_binbuf_compress(const Eina_Binbuf *in, | |||
64 | * @return a newly allocated buffer with the uncompressed data, | 64 | * @return a newly allocated buffer with the uncompressed data, |
65 | * @c NULL if it failed. | 65 | * @c NULL if it failed. |
66 | * | 66 | * |
67 | * @since 1.14.0 | 67 | * @since 1.14 |
68 | * | 68 | * |
69 | * @note That if dest_length doesn't match the expanded data, it will | 69 | * @note That if dest_length doesn't match the expanded data, it will |
70 | * just fail and return @c NULL. | 70 | * just fail and return @c NULL. |
@@ -81,7 +81,7 @@ EAPI Eina_Binbuf *emile_binbuf_uncompress(const Eina_Binbuf *in, | |||
81 | * @param t Type of compression logic to use. | 81 | * @param t Type of compression logic to use. |
82 | * | 82 | * |
83 | * @return EINA_TRUE if it succeed, EINA_FALSE if it failed. | 83 | * @return EINA_TRUE if it succeed, EINA_FALSE if it failed. |
84 | * @since 1.14.0 | 84 | * @since 1.14 |
85 | * | 85 | * |
86 | * @note The out buffer should have the necessary size to hold the | 86 | * @note The out buffer should have the necessary size to hold the |
87 | * expanded data or it will fail. In case of failure, random garbage | 87 | * expanded data or it will fail. In case of failure, random garbage |