From 0cf6986085b4af67510377a59d2b8123191c02cd Mon Sep 17 00:00:00 2001 From: Sunggoo Kim Date: Tue, 24 Mar 2015 15:00:08 +0900 Subject: [PATCH] Fix API version for wearable profile Change-Id: I7a732fcddd8882037ba02cad3e077042d3a2b64a --- include/contacts_activity.h | 4 +-- include/contacts_db.h | 47 +++++++++++++++++------------------ include/contacts_db_status.h | 10 ++++---- include/contacts_errors.h | 2 +- include/contacts_filter.h | 24 +++++++++--------- include/contacts_group.h | 6 ++--- include/contacts_list.h | 20 +++++++-------- include/contacts_person.h | 14 +++++------ include/contacts_phone_log.h | 2 +- include/contacts_phone_log_internal.h | 2 +- include/contacts_query.h | 12 ++++----- include/contacts_record.h | 40 ++++++++++++++--------------- include/contacts_service.h | 14 +++++------ include/contacts_setting.h | 24 +++++++++--------- include/contacts_sim.h | 4 +-- include/contacts_types.h | 32 ++++++++++++------------ include/contacts_vcard.h | 14 +++++------ 17 files changed, 135 insertions(+), 136 deletions(-) diff --git a/include/contacts_activity.h b/include/contacts_activity.h index 2c2e4e0..534bedc 100644 --- a/include/contacts_activity.h +++ b/include/contacts_activity.h @@ -49,7 +49,7 @@ extern "C" /** * @brief Deletes an activity record from the contacts database by contact ID. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -75,7 +75,7 @@ int contacts_activity_delete_by_contact_id(int contact_id); /** * @brief Deletes an activity record from the contacts database by account ID. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * diff --git a/include/contacts_db.h b/include/contacts_db.h index e642cb2..8811274 100644 --- a/include/contacts_db.h +++ b/include/contacts_db.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Enumeration for contact change state. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum @@ -61,7 +61,7 @@ typedef enum /** * @brief Called when the designated view changes. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] view_uri The view URI * @param[in] user_data The user data passed from the callback registration function @@ -75,7 +75,7 @@ typedef void (*contacts_db_changed_cb)(const char* view_uri, void* user_data); /** * @brief Inserts a record to the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -121,7 +121,7 @@ int contacts_db_insert_record( contacts_record_h record, int *id ); * @details This function creates a new contact handle from the contacts database by the given @a record_id. \n * @a record will be created, which is filled with contact information. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -164,7 +164,7 @@ int contacts_db_get_record( const char* view_uri, int record_id, contacts_record /** * @brief Updates a record in the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -205,7 +205,7 @@ int contacts_db_update_record( contacts_record_h record ); /** * @brief Deletes a record from the contacts database with related child records. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -247,7 +247,7 @@ int contacts_db_delete_record( const char* view_uri, int record_id ); * * @details Now, this API supports only _contacts_contact view_uri. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -283,7 +283,7 @@ int contacts_db_replace_record( contacts_record_h record, int id ); /** * @brief Retrieves all records and returns the results list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read *@privilege %http://tizen.org/privilege/callhistory.read @@ -327,7 +327,7 @@ int contacts_db_get_all_records( const char* view_uri, int offset, int limit, co /** * @brief Uses a query to find records. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -371,7 +371,7 @@ int contacts_db_get_records_with_query( contacts_query_h query, int offset, int /** * @brief Inserts multiple records to the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -413,7 +413,7 @@ int contacts_db_insert_records( contacts_list_h record_list, int **ids, int *cou /** * @brief Updates multiple records in the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -453,7 +453,7 @@ int contacts_db_update_records( contacts_list_h record_list); /** * @brief Deletes multiple records in the contacts database with related child records. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @privilege %http://tizen.org/privilege/callhistory.write @@ -495,7 +495,7 @@ int contacts_db_delete_records(const char* view_uri, int record_id_array[], int /** * @brief Replaces database records identified by given ids with a given record list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -532,7 +532,7 @@ int contacts_db_replace_records( contacts_list_h list, int record_id_array[], in /** * @brief Gets the current contacts database version. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -560,7 +560,7 @@ int contacts_db_get_current_version( int* contacts_db_version ); /** * @brief Registers a callback function to be invoked when a record changes. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -604,7 +604,7 @@ int contacts_db_add_changed_cb( const char* view_uri, contacts_db_changed_cb cal /** * @brief Unregisters a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -647,7 +647,7 @@ int contacts_db_remove_changed_cb( const char* view_uri, contacts_db_changed_cb * Now, support @ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact_updated_info, @ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_group_updated_info \n * @ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_my_profile_updated_info and @ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_grouprel_updated_info. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -683,7 +683,7 @@ int contacts_db_get_changes_by_version( const char* view_uri, int address_book_i /** * @brief Finds records based on a given keyword. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -719,7 +719,7 @@ int contacts_db_search_records(const char* view_uri, const char *keyword, int of /** * @brief Finds records based on given query and keyword. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -756,7 +756,7 @@ int contacts_db_search_records_with_query(contacts_query_h query, const char *ke /** * @brief Finds records based on a keyword and range. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -795,7 +795,7 @@ int contacts_db_search_records_with_range(const char* view_uri, const char *keyw /** * @brief Gets the number of records in a specific view. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -834,7 +834,7 @@ int contacts_db_get_count( const char* view_uri, int *count); /** * @brief Gets the number of records matching a query. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -873,7 +873,7 @@ int contacts_db_get_count_with_query( contacts_query_h query, int *count); /** * @brief Gets the last successful changed contacts database version on the current connection. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @privilege %http://tizen.org/privilege/callhistory.read @@ -895,7 +895,6 @@ int contacts_db_get_count_with_query( contacts_query_h query, int *count); */ int contacts_db_get_last_change_version(int* last_change_version); - /** * @} */ diff --git a/include/contacts_db_status.h b/include/contacts_db_status.h index 4d85797..3607262 100755 --- a/include/contacts_db_status.h +++ b/include/contacts_db_status.h @@ -40,7 +40,7 @@ extern "C" /** * @brief Enumeration for contact DB status. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ @@ -52,7 +52,7 @@ typedef enum { /** * @brief Gets the current status of server. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] status The current status of server * @@ -72,7 +72,7 @@ int contacts_db_get_status(contacts_db_status_e *status); /** * @brief Called when contacts-service server status changes. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] status The current status of server * @param[in] user_data The user data passed from the callback registration function @@ -87,7 +87,7 @@ typedef void (*contacts_db_status_changed_cb)(contacts_db_status_e status, void* /** * @brief Registers a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function @@ -109,7 +109,7 @@ int contacts_db_add_status_changed_cb(contacts_db_status_changed_cb callback, vo /** * @brief Unregisters a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function diff --git a/include/contacts_errors.h b/include/contacts_errors.h index 40ebfa5..5c57488 100644 --- a/include/contacts_errors.h +++ b/include/contacts_errors.h @@ -39,7 +39,7 @@ extern "C" /** * @brief Enumeration for contacts errors. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum diff --git a/include/contacts_filter.h b/include/contacts_filter.h index 3f9fcbf..ab22531 100755 --- a/include/contacts_filter.h +++ b/include/contacts_filter.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Enumeration for Contacts match string flags. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum @@ -64,7 +64,7 @@ typedef enum /** * @brief Enumeration for Contacts match int flags. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum @@ -81,7 +81,7 @@ typedef enum /** * @brief Enumeration for Contacts filter operators. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -93,7 +93,7 @@ typedef enum { /** * @brief Creates a filter. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a filter using contacts_filter_destroy(). * @@ -117,7 +117,7 @@ int contacts_filter_create( const char* view_uri, contacts_filter_h* filter ); /** * @brief Destroys a filter. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @@ -134,7 +134,7 @@ int contacts_filter_destroy( contacts_filter_h filter ); /** * @brief Adds a condition for a string type property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] property_id The property ID to add a condition @@ -155,7 +155,7 @@ int contacts_filter_add_str( contacts_filter_h filter, unsigned int property_id, /** * @brief Adds a condition for an integer type property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] property_id The property ID to add a condition @@ -176,7 +176,7 @@ int contacts_filter_add_int( contacts_filter_h filter, unsigned int property_id, /** * @brief Adds a condition for a long int type property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] property_id The property ID to add a condition @@ -197,7 +197,7 @@ int contacts_filter_add_lli( contacts_filter_h filter, unsigned int property_id, /** * @brief Adds a condition for a double type property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] property_id The property ID to add a condition @@ -218,7 +218,7 @@ int contacts_filter_add_double( contacts_filter_h filter, unsigned int property_ /** * @brief Adds a condition for a boolean type property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] property_id The property ID to add a condition @@ -238,7 +238,7 @@ int contacts_filter_add_bool( contacts_filter_h filter, unsigned int property_id /** * @brief Adds an operator between conditions. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] filter The filter handle * @param[in] operator_type The operator type @@ -258,7 +258,7 @@ int contacts_filter_add_operator( contacts_filter_h filter, contacts_filter_oper /** * @brief Adds a filter to a given filter. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] parent_filter The parent filter handle * @param[in] child_filter The child filter handle diff --git a/include/contacts_group.h b/include/contacts_group.h index 961b5b6..a1c384a 100644 --- a/include/contacts_group.h +++ b/include/contacts_group.h @@ -49,7 +49,7 @@ extern "C" /** * @brief Adds a contact and a group relationship to the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -76,7 +76,7 @@ int contacts_group_add_contact(int group_id, int contact_id); /** * @brief Removes a contact and a group relationship from the contacts database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -103,7 +103,7 @@ int contacts_group_remove_contact(int group_id, int contact_id); /** * @brief Sets a group between the previous group and the next group. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * diff --git a/include/contacts_list.h b/include/contacts_list.h index 078cbc4..95ab014 100644 --- a/include/contacts_list.h +++ b/include/contacts_list.h @@ -49,7 +49,7 @@ extern "C" /** * @brief Creates a contacts list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a contacts_list using contacts_list_destroy(). * @@ -69,7 +69,7 @@ int contacts_list_create( contacts_list_h* contacts_list ); /** * @brief Destroys a contacts list and releases its all resources. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @param[in] delete_child Set @c true to destroy child records automatically, @@ -88,7 +88,7 @@ int contacts_list_destroy( contacts_list_h contacts_list, bool delete_child ); /** * @brief Retrieves the number of contact entities from a contacts list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @param[out] count The count of contact entity @@ -106,7 +106,7 @@ int contacts_list_get_count( contacts_list_h contacts_list, int *count ); /** * @brief Adds a record to a contacts list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks Same kind of record can be added. * @@ -129,7 +129,7 @@ int contacts_list_add( contacts_list_h contacts_list, contacts_record_h record ) * @details If the record is current record, then current record is changed the next record.\n * If the record is the last record, then current record will be @c NULL. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @param[in] record The record handle @@ -150,7 +150,7 @@ int contacts_list_remove( contacts_list_h contacts_list, contacts_record_h recor * * @details The default current record is the first record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You MUST NOT destroy the @a record. * It is destroyed automatically when the @a contacts_list is destroyed. @@ -170,7 +170,7 @@ int contacts_list_get_current_record_p( contacts_list_h contacts_list, contacts_ /** * @brief Moves a contacts list to the previous position. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @@ -188,7 +188,7 @@ int contacts_list_prev( contacts_list_h contacts_list ); /** * @brief Moves a contacts list to the next position. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @@ -206,7 +206,7 @@ int contacts_list_next( contacts_list_h contacts_list ); /** * @brief Moves a contacts list to the first position. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * @@ -224,7 +224,7 @@ int contacts_list_first( contacts_list_h contacts_list ); /** * @brief Moves a contacts list to the last position. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contacts_list The contacts list handle * diff --git a/include/contacts_person.h b/include/contacts_person.h index 6af6a4c..c9f4211 100644 --- a/include/contacts_person.h +++ b/include/contacts_person.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Links a person to another person. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -75,7 +75,7 @@ int contacts_person_link_person(int base_person_id, int person_id); /** * @brief Unlinks a contact from a person. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -106,7 +106,7 @@ int contacts_person_unlink_contact(int person_id, int contact_id, int* unlinked_ * * @details The person is no longer in the most frequently contacted person list. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -134,7 +134,7 @@ int contacts_person_reset_usage(int person_id, contacts_usage_type_e type); /** * @brief Sets the order of a (favorite) contact. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -163,7 +163,7 @@ int contacts_person_set_favorite_order(int person_id, int previous_person_id, in /** * @brief Enumeration for Contacts person properties. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -176,7 +176,7 @@ typedef enum { /** * @brief Sets a record's default property. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -209,7 +209,7 @@ int contacts_person_set_default_property(contacts_person_property_e property, in /** * @brief Gets a default property for a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * diff --git a/include/contacts_phone_log.h b/include/contacts_phone_log.h index a869f11..bd75e11 100644 --- a/include/contacts_phone_log.h +++ b/include/contacts_phone_log.h @@ -62,7 +62,7 @@ extern "C" * @brief Resets the phone log's count. * @details The number of all types in the phone log will be @c 0. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/callhistory.write * diff --git a/include/contacts_phone_log_internal.h b/include/contacts_phone_log_internal.h index fd00c48..5dec9e8 100644 --- a/include/contacts_phone_log_internal.h +++ b/include/contacts_phone_log_internal.h @@ -44,7 +44,7 @@ typedef enum { /** * @brief Deletes a phone log with extra_data1. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/callhistory.write * diff --git a/include/contacts_query.h b/include/contacts_query.h index dc2d6cd..b3d59d9 100644 --- a/include/contacts_query.h +++ b/include/contacts_query.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Creates a query. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a query using contacts_query_destroy(). * @@ -72,7 +72,7 @@ int contacts_query_create( const char* view_uri, contacts_query_h* query ); /** * @brief Destroys a query. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] query The query handle * @@ -89,7 +89,7 @@ int contacts_query_destroy( contacts_query_h query ); /** * @brief Adds property IDs for projection. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] query The query handle * @param[in] property_id_array The property ID array @@ -107,7 +107,7 @@ int contacts_query_set_projection(contacts_query_h query, unsigned int property_ /** * @brief Sets the "distinct" option for projection. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] query The query handle * @param[in] set Set @c true to set the distinct option for projection, @@ -124,7 +124,7 @@ int contacts_query_set_distinct(contacts_query_h query, bool set); /** * @brief Sets a filter for query. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] query The query handle * @param[in] filter The filter handle @@ -142,7 +142,7 @@ int contacts_query_set_filter(contacts_query_h query, contacts_filter_h filter); /** * @brief Sets a sort mode for query. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] query The query handle * @param[in] property_id The property ID to sort diff --git a/include/contacts_record.h b/include/contacts_record.h index d56f35d..7d78d1f 100644 --- a/include/contacts_record.h +++ b/include/contacts_record.h @@ -49,7 +49,7 @@ extern "C" /** * @brief Creates a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a record using contacts_record_destroy(). * @@ -73,7 +73,7 @@ int contacts_record_create( const char* view_uri, contacts_record_h* record ); /** * @brief Destroys a record and releases its all resources. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] delete_child Set @c true to destroy child records automatically, @@ -92,7 +92,7 @@ int contacts_record_destroy( contacts_record_h record, bool delete_child ); /** * @brief Makes a clone of a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a cloned_record using contacts_record_destroy(). * @@ -113,7 +113,7 @@ int contacts_record_clone( contacts_record_h record, contacts_record_h* cloned_r /** * @brief Gets a string from the record handle. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a value using free(). * @@ -136,7 +136,7 @@ int contacts_record_get_str( contacts_record_h record, unsigned int property_id, /** * @brief Gets a string pointer from the record handle. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You MUST NOT release @a value. * @@ -159,7 +159,7 @@ int contacts_record_get_str_p( contacts_record_h record, unsigned int property_i /** * @brief Sets a string to a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -180,7 +180,7 @@ int contacts_record_set_str( contacts_record_h record, unsigned int property_id, /** * @brief Gets a record's integer value. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -200,7 +200,7 @@ int contacts_record_get_int( contacts_record_h record, unsigned int property_id, /** * @brief Sets an integer value to a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -220,7 +220,7 @@ int contacts_record_set_int( contacts_record_h record, unsigned int property_id, /** * @brief Gets a record's long integer value. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -240,7 +240,7 @@ int contacts_record_get_lli( contacts_record_h record, unsigned int property_id, /** * @brief Sets a long long integer value to a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -260,7 +260,7 @@ int contacts_record_set_lli( contacts_record_h record, unsigned int property_id, /** * @brief Gets a record's boolean value. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -280,7 +280,7 @@ int contacts_record_get_bool( contacts_record_h record, unsigned int property_id /** * @brief Sets a boolean value to a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -300,7 +300,7 @@ int contacts_record_set_bool( contacts_record_h record, unsigned int property_id /** * @brief Gets a record's double value. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -320,7 +320,7 @@ int contacts_record_get_double( contacts_record_h record, unsigned int property_ /** * @brief Sets a double value to a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] property_id The property ID @@ -340,7 +340,7 @@ int contacts_record_set_double( contacts_record_h record, unsigned int property_ /** * @brief Adds a child record to the parent record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The parent record handle * @param[in] property_id The property ID @@ -360,7 +360,7 @@ int contacts_record_add_child_record( contacts_record_h record, unsigned int pro /** * @brief Removes a child record from the parent record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The parent record handle * @param[in] property_id The property ID @@ -380,7 +380,7 @@ int contacts_record_remove_child_record( contacts_record_h record, unsigned int /** * @brief Gets the number of child records of a parent record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The parent record handle * @param[in] property_id The property ID @@ -401,7 +401,7 @@ int contacts_record_get_child_record_count( contacts_record_h record, unsigned i /** * @brief Gets a child record handle pointer from the parent record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You MUST NOT release @a child_record. It is released when the parent record is destroyed. * @@ -427,7 +427,7 @@ int contacts_record_get_child_record_at_p( contacts_record_h record, unsigned in /** * @brief Clones a child record list of the given parent record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks You must release @a cloned_list using contacts_list_destroy(). * @@ -449,7 +449,7 @@ int contacts_record_clone_child_record_list( contacts_record_h record, unsigned /** * @brief Gets URI string from a record. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[out] view_uri The URI of record diff --git a/include/contacts_service.h b/include/contacts_service.h index af84601..3316272 100755 --- a/include/contacts_service.h +++ b/include/contacts_service.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Connects to the contacts service. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks Connection opening is necessary to access the contacts server such as fetching, inserting, or updating records.\n * The execution of contacts_connect() and contacts_disconnect() could slow down your application. So it is not recommended to call them frequently. @@ -70,7 +70,7 @@ int contacts_connect(void); /** * @brief Disconnects from the contacts service. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks If there is no opened connection, this function returns #CONTACTS_ERROR_DB. * @@ -89,7 +89,7 @@ int contacts_disconnect(void); /** * @brief Connects to the contacts service with a connection on another thread. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @remarks Opening connection is necessary to access the contact server and to perform operations such as fetching, inserting, or updating records.\n * On multiple thread environment with contacts_connect(), request can be failed in one thread, while another request is working by the connection in the other thread. @@ -114,7 +114,7 @@ int contacts_connect_on_thread(void); /** * @brief Disconnects from the contacts service. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @return @c 0 on success, * otherwise a negative error value @@ -132,7 +132,7 @@ int contacts_disconnect_on_thread(void); /** * @brief Definition for contacts_connect_with_flags(). If it is called the API with this flag, then retry to call contacts_connect() for several times. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @see contacts_connect_with_flags() */ @@ -141,7 +141,7 @@ int contacts_disconnect_on_thread(void); /** * @brief Definition for default flag of contacts_connect_with_flags(). * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @see contacts_connect_with_flags() */ @@ -150,7 +150,7 @@ int contacts_disconnect_on_thread(void); /** * @brief Connects to the contacts service. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] flags connection flag * diff --git a/include/contacts_setting.h b/include/contacts_setting.h index 5a51ab7..75c6b04 100755 --- a/include/contacts_setting.h +++ b/include/contacts_setting.h @@ -48,7 +48,7 @@ extern "C" /** * @brief Enumeration for name display order. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum @@ -60,7 +60,7 @@ typedef enum /** * @brief Gets the contacts name display order. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -84,7 +84,7 @@ int contacts_setting_get_name_display_order(contacts_name_display_order_e *name_ /** * @brief Sets the contacts name display order. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -111,7 +111,7 @@ int contacts_setting_set_name_display_order(contacts_name_display_order_e name_d /** * @brief Enumeration for name sorting order. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum @@ -124,7 +124,7 @@ typedef enum /** * @brief Gets the contacts name sorting order in which contacts are returned. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -148,7 +148,7 @@ int contacts_setting_get_name_sorting_order(contacts_name_sorting_order_e *name_ /** * @brief Sets the contacts name sorting order in which contacts are returned. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -174,7 +174,7 @@ int contacts_setting_set_name_sorting_order(contacts_name_sorting_order_e name_s /** * @brief Called when a designated view changes. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] name_display_order The name display order setting value * @param[in] user_data The user data passed from the callback registration function @@ -191,7 +191,7 @@ typedef void (*contacts_setting_name_display_order_changed_cb)(contacts_name_dis /** * @brief Registers a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -219,7 +219,7 @@ int contacts_setting_add_name_display_order_changed_cb(contacts_setting_name_dis /** * @brief Unregisters a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function * @@ -241,7 +241,7 @@ int contacts_setting_remove_name_display_order_changed_cb(contacts_setting_name_ /** * @brief Called when a designated view changes. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @param[in] name_sorting_order The name sorting order setting value * @param[in] user_data The user data passed from the callback registration function * @@ -257,7 +257,7 @@ typedef void (*contacts_setting_name_sorting_order_changed_cb)(contacts_name_sor /** * @brief Registers a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -285,7 +285,7 @@ int contacts_setting_add_name_sorting_order_changed_cb(contacts_setting_name_sor /** * @brief Unregisters a callback function. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function * diff --git a/include/contacts_sim.h b/include/contacts_sim.h index 6e7dbe1..e602aa8 100644 --- a/include/contacts_sim.h +++ b/include/contacts_sim.h @@ -59,7 +59,7 @@ extern "C" /** * @brief Imports all contacts from SIM to Contacts Database. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.write * @@ -85,7 +85,7 @@ int contacts_sim_import_all_contacts(void); /** * @brief Checks whether SIM initialization is completed. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * diff --git a/include/contacts_types.h b/include/contacts_types.h index 35004c0..8666cfa 100644 --- a/include/contacts_types.h +++ b/include/contacts_types.h @@ -85,7 +85,7 @@ _CONTACTS_HANDLE( contacts_query_h ) * \n Example : CTS_NUM_TYPE_HOME|CTS_NUM_TYPE_VOICE * \n Exceptionally, CTS_NUM_TYPE_CUSTOM is exclusive. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -113,7 +113,7 @@ typedef enum { /** * @brief Enumeration for Contact email type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -127,7 +127,7 @@ typedef enum { /** * @brief Enumeration for Contact company type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -139,7 +139,7 @@ typedef enum { /** * @brief Enumeration for Contact address type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -156,7 +156,7 @@ typedef enum { /** * @brief Enumeration for Contact URL type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -169,7 +169,7 @@ typedef enum { /** * @brief Enumeration for Contact messenger type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum{ @@ -190,7 +190,7 @@ typedef enum{ /** * @brief Enumeration for Call history type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -223,7 +223,7 @@ typedef enum { /** * @brief Enumeration for Contact event type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -236,7 +236,7 @@ typedef enum { /** * @brief Enumeration for Contact event calendar type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -247,7 +247,7 @@ typedef enum { /** * @brief Enumeration of Contact image type * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -258,7 +258,7 @@ typedef enum { /** * @brief Enumeration for usage type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -270,7 +270,7 @@ typedef enum { /** * @brief Enumeration for Contact display name source type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -285,7 +285,7 @@ typedef enum { /** * @brief Enumeration for Address book mode. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -296,7 +296,7 @@ typedef enum { /** * @brief Enumeration for link mode when inserting contact. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum{ @@ -307,7 +307,7 @@ typedef enum{ /** * @brief Enumeration for Contact relationship type. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { @@ -332,7 +332,7 @@ typedef enum { /** * @brief Enumeration for Contact search range. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * */ typedef enum { diff --git a/include/contacts_vcard.h b/include/contacts_vcard.h index 7665282..38e72f2 100644 --- a/include/contacts_vcard.h +++ b/include/contacts_vcard.h @@ -49,7 +49,7 @@ extern "C" /** * @brief Called to get a record handle of @ref CAPI_SOCIAL_CONTACTS_SVC_VIEW_MODULE_contacts_contact. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] record The record handle * @param[in] user_data The user data passed from the foreach function @@ -66,7 +66,7 @@ typedef bool (*contacts_vcard_parse_cb)(contacts_record_h record, void *user_dat /** * @brief Retrieves all contacts with a record handle (_contacts_contact) from a vCard file. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] vcard_file_path The file path of vCard stream file * @param[in] callback The callback function to invoke @@ -91,7 +91,7 @@ int contacts_vcard_parse_to_contact_foreach(const char *vcard_file_path, contact /** * @brief Retrieves all contacts with a contacts list from a vCard stream. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] vcard_stream The vCard stream * @param[out] contacts_list The contacts list handle @@ -111,7 +111,7 @@ int contacts_vcard_parse_to_contacts(const char *vcard_stream, contacts_list_h * /** * @brief Retrieves the vCard stream from a contact. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] contact The contact record handle * @param[out] vcard_stream The vCard stream @@ -128,7 +128,7 @@ int contacts_vcard_make_from_contact(contacts_record_h contact, char **vcard_str /** * @brief Retrieves the vCard stream from a contact. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] my_profile The my_profile record handle * @param[out] vcard_stream The vCard stream @@ -146,7 +146,7 @@ int contacts_vcard_make_from_my_profile(contacts_record_h my_profile, char **vca /** * @brief Retrieves the vCard stream from a person. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * @privlevel public * @privilege %http://tizen.org/privilege/contact.read * @@ -172,7 +172,7 @@ int contacts_vcard_make_from_person(contacts_record_h person, char **vcard_strea /** * @brief Retrieves the count of contact entities from a vCard file. * - * @since_tizen 2.3 + * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * @param[in] vcard_file_path The person record handle * @param[out] count The count of contact entity -- 2.7.4