From c07275654a62d6c8294821db72f581c0bd7deab8 Mon Sep 17 00:00:00 2001 From: "intae, jeon" Date: Wed, 22 Jun 2016 16:07:08 +0900 Subject: [PATCH] fix ABI Issue Change-Id: I3aecc3c22e4fa8a422486ea7dba203d9a910779b Signed-off-by: intae, jeon --- email-api/email-api-smime.c | 8 ++++++++ email-common-use/include/email-types.h | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/email-api/email-api-smime.c b/email-api/email-api-smime.c index 835f127..da6c76e 100755 --- a/email-api/email-api-smime.c +++ b/email-api/email-api-smime.c @@ -543,3 +543,11 @@ FINISH_OFF: EM_DEBUG_API_END("err[%d]", err); return err; } + +EXPORT_API int email_free_certificate(email_certificate_t **certificate, int count) +{ + EM_DEBUG_API_BEGIN(""); + return EMAIL_ERROR_NOT_SUPPORTED; +} + + diff --git a/email-common-use/include/email-types.h b/email-common-use/include/email-types.h index b3961b1..4303037 100755 --- a/email-common-use/include/email-types.h +++ b/email-common-use/include/email-types.h @@ -1357,6 +1357,8 @@ typedef struct char *logo_icon_path; /**< Account logo icon (used by account svc and email app) */ email_roaming_option_t roaming_option; /**< Roaming option */ int color_label; /**< Account color label */ + void *user_data; /**< Binary user data */ + int user_data_length; /**< User data length */ /* User information */ char *user_display_name; /**< User's display */ @@ -1413,8 +1415,6 @@ typedef struct email_digest_type digest_type; /**< The digest algorithm */ char *user_name; /**< The user name for multi user (Since 2.4) */ - int user_data_length; /**< User data length */ - void *user_data; /**< Binary user data */ } email_account_t; /** -- 2.7.4