Remove Mobile/Wearable conditional statements in API document 45/318845/1 accepted/tizen_unified_toolchain accepted/tizen/9.0/unified/20241030.232503 accepted/tizen/unified/20241011.010657 accepted/tizen/unified/toolchain/20241022.122330 accepted/tizen/unified/toolchain/20241022.122819 accepted/tizen/unified/x/20241011.021821 accepted/tizen/unified/x/asan/20241013.235643 tizen_9.0_m2_release
authorWootak Jung <wootak.jung@samsung.com>
Thu, 10 Oct 2024 01:30:20 +0000 (10:30 +0900)
committerWootak Jung <wootak.jung@samsung.com>
Thu, 10 Oct 2024 01:33:37 +0000 (10:33 +0900)
Change-Id: Iea185e177961dd11426bb271e3fd5b7184de5892
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
common/telephony_private.h
include/telephony_call.h
include/telephony_common.h
include/telephony_modem.h
include/telephony_network.h
include/telephony_sim.h

index 966d3bb66e579783d25dabca2f78d4bc9af71298..76a971e5e02b879eda972268d17ce426906006c0 100644 (file)
@@ -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 */
index 64b0bf24e0fa98cd8a667b538eab3b4d2abfdee1..ff3705ab7a7e60b93d859971dffe325d189f8e36 100644 (file)
@@ -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
index 732697d8f138ae2d52909058b49b629d92e397b2..f899a0394212939091d0036bd405da75d9d340ac 100644 (file)
@@ -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
  *
index a29d34968a71e3b7775ec986350ef262f742b9a2..3f53040dbef2030e48538acfb102d478cbd30db7 100644 (file)
@@ -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
  *
index 61ab0cca8ca6adb953de92574b18238849817d04..0b30c9b950b1180716f5892a02d924dbee97b692 100644 (file)
@@ -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
  *
index d14678fab289a5216a2ab491cf4cb1a95a2108ad..72abca23a0b253aac1192eaad2b7fcb739a809d0 100644 (file)
@@ -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
  *