fix ABI Issue 29/75929/1 accepted/tizen/common/20160623.154115 submit/tizen/20160622.235615
authorintae, jeon <intae.jeon@samsung.com>
Wed, 22 Jun 2016 07:07:08 +0000 (16:07 +0900)
committerintae, jeon <intae.jeon@samsung.com>
Wed, 22 Jun 2016 07:07:08 +0000 (16:07 +0900)
Change-Id: I3aecc3c22e4fa8a422486ea7dba203d9a910779b
Signed-off-by: intae, jeon <intae.jeon@samsung.com>
email-api/email-api-smime.c
email-common-use/include/email-types.h

index 835f127..da6c76e 100755 (executable)
@@ -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;
+}
+
+
index b3961b1..4303037 100755 (executable)
@@ -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;
 
 /**