/**
* @brief Enumeration for the Feedback API error codes.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
FEEDBACK_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
/**
* @brief Initializes feedback API.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @remarks If this function is not called in advance, other function will return #FEEDBACK_ERROR_NOT_INITIALIZED.
* And for controlling haptic device, the privilege should be set to, %http://tizen.org/privilege/haptic.
* If you don't have the haptic privilege, this function initializes only sound.
/**
* @brief Deinitializes feedback API.
* @details This function must be called when feedback functions are no longer needed.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @remarks If you don't want to use feedback anymore, you need to deinitialize with this function.
* And for controlling haptic device, the privilege should be set to, %http://tizen.org/privilege/haptic.
* If you don't have the haptic privilege, this function deinitializes only sound.
* @brief Plays various types of reactions that are pre-defined.
* @details This function can be used to react to pre-defined actions. \n
* It play various types of system pre-defined media or vibration patterns.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @remarks Currently, there are two types of reactions: sound and vibration. \n
* Depending on the settings, some types cannot operate.
* For example, when set to silent mode, the device doesn't produce any sound.
* @brief Plays specific type of reactions that are pre-defined.
* @details This function can be used to react to pre-defined actions. \n
* It play specific type of system pre-defined pattern.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @remarks Currently, there are two types of reactions: sound and vibration. \n
* Depending on the settings, some types cannot operate.
* For example, when set to silent mode, the device doesn't produce any sound.
* @brief Stops various types of reactions.
* @details This function can be used to stop reaction to pre-defined actions. \n
* It stops system pre-defined vibration patterns.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @remarks This function does not support to stop media sound actions. \n
* In this case, it will return FEEDBACK_ERROR_NOT_SUPPORTED error.
* And for controlling haptic device, the privilege should be set to, %http://tizen.org/privilege/haptic.
/**
* @brief Checks if the pattern is supported.
* @details This function can be used to check if a specific pattern is supported.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
* @param[in] type The pattern type
* @param[in] pattern The pre-defined pattern
* @param[out] status True means the pattern is supported,