From: Wootak Jung Date: Thu, 10 Oct 2024 01:30:20 +0000 (+0900) Subject: Remove Mobile/Wearable conditional statements in API document X-Git-Tag: accepted/tizen/unified/20241011.010657^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_unified_toolchain;p=platform%2Fcore%2Fapi%2Ftelephony.git Remove Mobile/Wearable conditional statements in API document Change-Id: Iea185e177961dd11426bb271e3fd5b7184de5892 Signed-off-by: Wootak Jung --- diff --git a/common/telephony_private.h b/common/telephony_private.h index 966d3bb..76a971e 100644 --- a/common/telephony_private.h +++ b/common/telephony_private.h @@ -53,7 +53,7 @@ /** * @brief Definition for the max length of call number - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ #define TELEPHONY_CALL_NUMBER_LEN_MAX 82 @@ -79,7 +79,7 @@ struct tapi_handle { /** * @brief The structure type for the call information. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ struct telephony_call_info_s { unsigned int id; /**< The handle of the call */ diff --git a/include/telephony_call.h b/include/telephony_call.h index 64b0bf2..ff3705a 100644 --- a/include/telephony_call.h +++ b/include/telephony_call.h @@ -35,14 +35,14 @@ extern "C" { /** * @brief The call handle. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef struct telephony_call_info_s *telephony_call_h; /** * @brief Enumeration for the call status. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_CALL_STATUS_IDLE, /**< Idle status */ @@ -55,7 +55,7 @@ typedef enum { /** * @brief Enumeration for the preferred voice call subscription. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_CALL_PREFERRED_VOICE_SUBS_UNKNOWN = -1, /**< Unknown status */ @@ -67,7 +67,7 @@ typedef enum { /** * @brief Enumeration for the call type. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_CALL_TYPE_VOICE, /**< Voice call */ @@ -77,7 +77,7 @@ typedef enum { /** * @brief Enumeration for the call direction. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_CALL_DIRECTION_MO, /**< MO(Mobile Originated) call */ @@ -91,7 +91,7 @@ typedef enum { * It requires the handle obtained from the telephony_init() function as an argument and returns * the currently set preferred call subscription value in the form of telephony_call_preferred_voice_subs_e. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -119,7 +119,7 @@ int telephony_call_get_preferred_voice_subscription(telephony_h handle, telephon * However, it should be noted that the returned call list needs to be released * by calling the 'telephony_call_release_call_list' function. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -149,7 +149,7 @@ int telephony_call_get_call_list(telephony_h handle, unsigned int *count, teleph * elsewhere within your application or system. Remember that before releasing the call list, * it is crucial to validate its validity using the 'telephony_call_validate_call_list' function. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] count The count of the calls from #telephony_call_get_call_list() * @param[in] call_list The handle from #telephony_call_get_call_list() @@ -171,7 +171,7 @@ int telephony_call_release_call_list(unsigned int count, telephony_call_h **call * By utilizing this API, you can access specific attributes or perform actions related to * a particular call within your application's telephony session. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] call_handle The handle from #telephony_call_get_call_list() * @param[out] handle_id The ID of the call handle @@ -191,7 +191,7 @@ int telephony_call_get_handle_id(telephony_call_h call_handle, unsigned int *han /** * @brief Gets the call number. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @details This function retrieves the phone number associated with a specified call handle. * By providing the call handle obtained from the 'telephony_call_get_call_list' API as input, * you can obtain the corresponding call number. @@ -219,7 +219,7 @@ int telephony_call_get_number(telephony_call_h call_handle, char **number); * Knowing the call type allows you to provide appropriate handling mechanisms * according to different scenarios. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] call_handle The handle from #telephony_call_get_call_list() * @param[out] type The type of the call (#telephony_call_type_e) @@ -242,7 +242,7 @@ int telephony_call_get_type(telephony_call_h call_handle, telephony_call_type_e * Understanding the call status enables you to implement accurate response * mechanisms tailored to each situation. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] call_handle The handle from #telephony_call_get_call_list() * @param[out] status The status of the call (#telephony_call_status_e) @@ -261,7 +261,7 @@ int telephony_call_get_status(telephony_call_h call_handle, telephony_call_statu /** * @brief Gets whether the call is MO(Mobile Originated) call or MT(Mobile Terminated). - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @details This function determines whether a call originated from the mobile device (MO) * or was received by the mobile device (MT), based on the provided call handle. * @@ -287,7 +287,7 @@ int telephony_call_get_direction(telephony_call_h call_handle, telephony_call_di * the 'telephony_call_get_call_list' API, you can determine the nature of the call and * adjust your application's functionality accordingly. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] call_handle The handle from #telephony_call_get_call_list() * @param[out] conference_status The value whether the call is conference call or not diff --git a/include/telephony_common.h b/include/telephony_common.h index 732697d..f899a03 100644 --- a/include/telephony_common.h +++ b/include/telephony_common.h @@ -40,7 +40,7 @@ extern "C" { /** * @brief The Telephony API handle. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef struct telephony_data *telephony_h; @@ -48,7 +48,7 @@ typedef struct telephony_data *telephony_h; * @brief The structure type for the list of handles to use the Telephony API. * @remarks There are two handles in case of dual SIM device. \n * In this case, handle[0] means Primary SIM and handle[1] means Secondary SIM. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef struct { unsigned int count; /**< Number of available handle */ @@ -57,7 +57,7 @@ typedef struct { /** * @brief Enumeration for Telephony error. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */ @@ -71,7 +71,7 @@ typedef enum { /** * @brief Enumeration for Telephony notification. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_NOTI_SIM_STATUS = 0x10, /**< Notification to be invoked when the SIM card state changes. @n @@ -95,16 +95,16 @@ typedef enum { '#telephony_network_rssi_e' will be delivered in notification data @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_NETWORK_NETWORK_NAME, /**< Notification to be invoked when the network name changes. @n - 'network_name(char *)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'network_name(char *)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_NETWORK_PS_TYPE, /**< Notification to be invoked when the ps type changes. @n - '#telephony_network_ps_type_e' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + '#telephony_network_ps_type_e' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_NETWORK_DEFAULT_DATA_SUBSCRIPTION, /**< Notification to be invoked when the default data subscription changes. @n - '#telephony_network_default_data_subs_e' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + '#telephony_network_default_data_subs_e' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_NETWORK_DEFAULT_SUBSCRIPTION, /**< Notification to be invoked when the default subscription changes. @n - '#telephony_network_default_subs_e' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + '#telephony_network_default_subs_e' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_NETWORK_LAC, /**< Notification to be invoked when the LAC (Location Area Code) changes. @n 'lac(int)' will be delivered in notification data (@b Since: 3.0) @n @@ -128,40 +128,40 @@ typedef enum { 'bs_longitue(int)' will be delivered in notification data (@b Since: 3.0) @n Privilege : %http://tizen.org/privilege/location.coarse */ TELEPHONY_NOTI_VOICE_CALL_STATUS_IDLE = 0x32, /**< Notification to be invoked when a voice call is in idle status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VOICE_CALL_STATUS_ACTIVE, /**< Notification to be invoked when a voice call is in active status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VOICE_CALL_STATUS_HELD, /**< Notification to be invoked when a voice call is in held status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VOICE_CALL_STATUS_DIALING, /**< Notification to be invoked when a voice call is in dialing status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VOICE_CALL_STATUS_ALERTING, /**< Notification to be invoked when a voice call is in alerting status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VOICE_CALL_STATUS_INCOMING, /**< Notification to be invoked when a voice call is in incoming status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VIDEO_CALL_STATUS_IDLE, /**< Notification to be invoked when a video call is in idle status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VIDEO_CALL_STATUS_ACTIVE, /**< Notification to be invoked when a video call is in active status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VIDEO_CALL_STATUS_DIALING, /**< Notification to be invoked when a video call is in dialing status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VIDEO_CALL_STATUS_ALERTING, /**< Notification to be invoked when a video call is in alerting status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_VIDEO_CALL_STATUS_INCOMING, /**< Notification to be invoked when a video call is in incoming status. @n - 'handle_id(unsigned int)' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + 'handle_id(unsigned int)' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_CALL_PREFERRED_VOICE_SUBSCRIPTION, /**< Notification to be invoked when the preferred voice subscription changes. @n - '#telephony_call_preferred_voice_subs_e' will be delivered in notification data (@b Since: @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) @n + '#telephony_call_preferred_voice_subs_e' will be delivered in notification data (@b Since: 2.4) @n Privilege : %http://tizen.org/privilege/telephony */ TELEPHONY_NOTI_MODEM_POWER_STATUS, /**< Notification to be invoked when the modem power status changes. @n '#telephony_modem_power_status_e' will be delivered in notification data (@b Since: 4.0) @n @@ -170,14 +170,14 @@ typedef enum { /** * @brief Called when the telephony state changes. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef void (*telephony_noti_cb)(telephony_h handle, telephony_noti_e noti_id, void *data, void *user_data); /** * @brief Sets a callback function to be invoked when the telephony state changes. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks An application should have the privilege corresponding to each notification ID. \n * Please see the #telephony_noti_e to know the privilege. \n @@ -206,7 +206,7 @@ int telephony_set_noti_cb(telephony_h handle, telephony_noti_e noti_id, telephon /** * @brief Unsets a callback function. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] handle The handle to use the telephony API * @param[in] noti_id The notification ID to unset a callback @@ -226,7 +226,7 @@ int telephony_unset_noti_cb(telephony_h handle, telephony_noti_e noti_id); /** * @brief Acquires the list of available handles to use the telephony API. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @remarks You will get two handles in case of dual SIM device. \n * In this case, handle[0] means Primary SIM and handle[1] means Secondary SIM. @@ -250,7 +250,7 @@ int telephony_init(telephony_handle_list_s *list); /** * @brief Deinitializes the telephony handle list. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * * @param[in] list The handle list to be deinitialized * @@ -268,7 +268,7 @@ int telephony_deinit(telephony_handle_list_s *list); /** * @brief Enumeration for the telephony state. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_STATE_NOT_READY, /**< Telephony state is not ready */ @@ -277,14 +277,14 @@ typedef enum { /** * @brief Called for the telephony state changes. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef void (*telephony_state_changed_cb)(telephony_state_e state, void *user_data); /** * @brief Acquires the telephony state value. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[out] state The state value of telephony * @@ -304,7 +304,7 @@ int telephony_get_state(telephony_state_e *state); /** * @brief Sets a callback function to be invoked when the telephony state changes. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] callback The callback to be invoked when the telephony state changes * @param[in] user_data The user data passed to the callback function @@ -326,7 +326,7 @@ int telephony_set_state_changed_cb(telephony_state_changed_cb callback, void *us /** * @brief Unsets a telephony state callback function. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * * @param[in] callback The callback to unset when the telephony state changes * diff --git a/include/telephony_modem.h b/include/telephony_modem.h index a29d349..3f53040 100644 --- a/include/telephony_modem.h +++ b/include/telephony_modem.h @@ -35,7 +35,7 @@ extern "C" { /** * @brief Enumeration for Modem Power Status. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_MODEM_POWER_STATUS_UNKNOWN = -1, /**< Unknown */ @@ -51,7 +51,7 @@ typedef enum { * @details The IMEI number is used by a GSM network to identify valid devices * and therefore can be used for stopping a stolen phone from accessing that network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel partner * @privilege %http://tizen.org/privilege/securesysteminfo * @@ -79,7 +79,7 @@ int telephony_modem_get_imei(telephony_h handle, char **imei); /** * @brief Gets the power status of the modem. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * diff --git a/include/telephony_network.h b/include/telephony_network.h index 61ab0cc..0b30c9b 100644 --- a/include/telephony_network.h +++ b/include/telephony_network.h @@ -37,7 +37,7 @@ extern "C" /** * @brief Enumeration for RSSI (Receive Signal Strength Indicator). * @details #TELEPHONY_NETWORK_RSSI_6 indicates the highest strength. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_NETWORK_RSSI_0, /**< Strength 0 */ @@ -51,7 +51,7 @@ typedef enum { /** * @brief Enumeration for Network Type. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_NETWORK_TYPE_UNKNOWN, /**< Unknown */ @@ -73,7 +73,7 @@ typedef enum { /** * @brief Enumeration for PS Type. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_NETWORK_PS_TYPE_UNKNOWN, /**< Unknown */ @@ -85,7 +85,7 @@ typedef enum { /** * @brief Enumeration for Network Service State. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_NETWORK_SERVICE_STATE_IN_SERVICE, /**< In service */ @@ -95,7 +95,7 @@ typedef enum { /** * @brief Enumeration for Network Name Priority. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_NETWORK_NAME_OPTION_UNKNOWN, /**< Unknown */ @@ -106,7 +106,7 @@ typedef enum { /** * @brief Enumeration for the possible 'default' Data Subscriptions for Packet Switched(PS). - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_NETWORK_DEFAULT_DATA_SUBS_UNKNOWN = -1, /**< Unknown status */ @@ -116,7 +116,7 @@ typedef enum { /** * @brief Enumeration for defining possible 'default' Subscriptions for Circuit Switched(CS). - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_NETWORK_DEFAULT_SUBS_UNKNOWN = -1, /**< Unknown status */ @@ -136,7 +136,7 @@ typedef enum { /** * @brief Gets the LAC (Location Area Code) of the current location. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/location.coarse * @@ -164,7 +164,7 @@ int telephony_network_get_lac(telephony_h handle, int *lac); /** * @brief Gets the cell ID of the current location. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/location.coarse * @@ -192,7 +192,7 @@ int telephony_network_get_cell_id(telephony_h handle, int *cell_id); /** * @brief Gets the RSSI (Received Signal Strength Indicator). * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -214,7 +214,7 @@ int telephony_network_get_rssi(telephony_h handle, telephony_network_rssi_e *rss /** * @brief Gets the roaming state of the current registered network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -236,7 +236,7 @@ int telephony_network_get_roaming_status(telephony_h handle, bool *status); /** * @brief Gets the MCC (Mobile Country Code) of the current registered network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -261,7 +261,7 @@ int telephony_network_get_mcc(telephony_h handle, char **mcc); /** * @brief Gets the MNC (Mobile Network Code) of the current registered network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -286,7 +286,7 @@ int telephony_network_get_mnc(telephony_h handle, char **mnc); /** * @brief Gets the name of the current registered network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -310,7 +310,7 @@ int telephony_network_get_network_name(telephony_h handle, char **network_name); /** * @brief Gets the network service type of the current registered network. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -336,7 +336,7 @@ int telephony_network_get_type(telephony_h handle, telephony_network_type_e *net /** * @brief Gets the packet service type of the current registered network. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -362,7 +362,7 @@ int telephony_network_get_ps_type(telephony_h handle, telephony_network_ps_type_ /** * @brief Gets the network name option of the current registered network. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -384,7 +384,7 @@ int telephony_network_get_network_name_option(telephony_h handle, telephony_netw /** * @brief Gets the current network state of the telephony service. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -408,7 +408,7 @@ int telephony_network_get_service_state(telephony_h handle, telephony_network_se /** * @brief Gets the current default subscription for data service (Packet Switched). * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -431,7 +431,7 @@ int telephony_network_get_default_data_subscription(telephony_h handle, telephon /** * @brief Gets the current default subscription for voice service (Circuit Switched). * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * diff --git a/include/telephony_sim.h b/include/telephony_sim.h index d14678f..72abca2 100644 --- a/include/telephony_sim.h +++ b/include/telephony_sim.h @@ -35,7 +35,7 @@ extern "C" { /** * @brief Enumeration for the state of SIM card. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { TELEPHONY_SIM_STATE_UNAVAILABLE, /**< SIM is not available on this device */ @@ -58,7 +58,7 @@ typedef enum { /** * @brief Enumeration for the type of SIM card. - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 */ typedef enum { TELEPHONY_SIM_APP_TYPE_SIM = 0x01, /**< SIM(GSM) Application */ @@ -73,7 +73,7 @@ typedef enum { * @brief Gets the Integrated Circuit Card IDentification (ICC-ID). * @details The Integrated Circuit Card Identification number internationally identifies SIM cards. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel partner * @privilege %http://tizen.org/privilege/securesysteminfo * @@ -107,7 +107,7 @@ int telephony_sim_get_icc_id(telephony_h handle, char **icc_id); * @brief Gets the SIM Operator (MCC [3 digits] + MNC [2~3 digits]). * @details The Operator is embedded in the SIM card. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -136,7 +136,7 @@ int telephony_sim_get_operator(telephony_h handle, char **sim_operator); * @brief Gets the Mobile Subscription Identification Number (MSIN [9~10 digits]) of the SIM provider. * @details This function gets Mobile Subscription Identification Number embedded in the SIM card. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -166,7 +166,7 @@ int telephony_sim_get_msin(telephony_h handle, char **msin); * @details This function gets Service Provider Name embedded in the SIM card. * If this value is not stored in SIM card, @c NULL will be returned. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -194,7 +194,7 @@ int telephony_sim_get_spn(telephony_h handle, char **spn); /** * @brief Checks whether the current SIM card is different from the previous SIM card. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -221,7 +221,7 @@ int telephony_sim_is_changed(telephony_h handle, bool *is_changed); /** * @brief Gets the state of the SIM. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -242,7 +242,7 @@ int telephony_sim_get_state(telephony_h handle, telephony_sim_state_e *sim_state /** * @brief Gets the list of application on UICC. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -275,7 +275,7 @@ int telephony_sim_get_application_list(telephony_h handle, unsigned int *app_lis * This value contains MSISDN related to the subscriber. * If this value is not stored in SIM card, @c NULL will be returned. * - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 * @privlevel public * @privilege %http://tizen.org/privilege/telephony * @@ -304,7 +304,7 @@ int telephony_sim_get_subscriber_number(telephony_h handle, char **subscriber_nu * @brief Gets the Subscriber ID. * @details This function gets subscriber ID encoded. * - * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif + * @since_tizen 2.4 * @privlevel public * @privilege %http://tizen.org/privilege/telephony *