diff options
author | Ernest Borowski <e.borowski@partner.samsung.com> | 2019-03-07 11:39:16 +0100 |
---|---|---|
committer | Ernest Borowski <e.borowski@partner.samsung.com> | 2019-03-07 11:40:20 +0100 |
commit | 7ffc7a5d71e9b5ae40cba2f4677b26cd545a2b27 (patch) | |
tree | cd90034eecd9f0b498e9fa4d48c2f2ba735855d4 | |
parent | b8bcaa92a0ea4d0edbcb6381051339a062923008 (diff) | |
download | key-manager-7ffc7a5d71e9b5ae40cba2f4677b26cd545a2b27.tar.gz key-manager-7ffc7a5d71e9b5ae40cba2f4677b26cd545a2b27.tar.bz2 key-manager-7ffc7a5d71e9b5ae40cba2f4677b26cd545a2b27.zip |
Fix since_tizen tag in ckmc-type.h
Change-Id: Ib8fd0260527ed87bf0801e3cb7a24d2ca97f4c90
Signed-off-by: Ernest Borowski <e.borowski@partner.samsung.com>
-rw-r--r-- | src/include/ckmc/ckmc-type.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/ckmc/ckmc-type.h b/src/include/ckmc/ckmc-type.h index da0c05e..a182519 100644 --- a/src/include/ckmc/ckmc-type.h +++ b/src/include/ckmc/ckmc-type.h @@ -231,13 +231,13 @@ struct ckmc_alias_info_s; /** * @brief The structure of alias and additional information about it. - * @since_tizen 5.0 + * @since_tizen 5.5 */ typedef struct ckmc_alias_info_s ckmc_alias_info_s; /** * @brief The structure for linked list of alias with additional information. - * @since_tizen 5.0 + * @since_tizen 5.5 */ typedef struct __ckmc_alias_info_list_s { struct ckmc_alias_info_s* info; /**< The pointer pointing to the alias structure @@ -362,7 +362,7 @@ typedef enum __ckmc_algo_type { /** * @brief Gets the alias from #ckmc_alias_info_s structure. - * @since_tizen 5.0 + * @since_tizen 5.5 * @remarks The @a alias should not be released. * The @a alias can be used until #ckmc_alias_info_s is released. * @param[in] info The pointer to the #ckmc_alias_info_s structure @@ -377,7 +377,7 @@ int ckmc_alias_info_get_alias(const ckmc_alias_info_s* info, char** alias); /** * @brief Gets the password protection status from #ckmc_alias_info_s structure. - * @since_tizen 5.0 + * @since_tizen 5.5 * @param[in] info The pointer to the #ckmc_alias_info_s structure * @param[out] is_password_protected The pointer to the password protection flag * @return #CKMC_ERROR_NONE on success, @@ -390,7 +390,7 @@ int ckmc_alias_info_is_password_protected(const ckmc_alias_info_s* info, bool* i /** * @brief Destroys the #ckmc_alias_info_list_s handle and releases resources of #ckmc_alias_info_list_s from the provided first handle cascadingly. - * @since_tizen 5.0 + * @since_tizen 5.5 * @param[in] first The first #ckmc_alias_info_list_s handle to destroy * @see #ckmc_alias_info_list_s */ |