add () after function name 62/202962/1
authorJunkyeong Kim <jk0430.kim@samsung.com>
Mon, 8 Apr 2019 07:00:36 +0000 (16:00 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Mon, 8 Apr 2019 07:00:40 +0000 (16:00 +0900)
Change-Id: Ia29b5ff9ea740e8277f93eb88c70a4969ac8dbed
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
include/eom.h

index 735abd4..8f90dfb 100644 (file)
@@ -137,7 +137,7 @@ typedef unsigned int eom_output_id;
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @param[in] output_id  The output id which is connected output
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_output_added_cb function
+ *                                   eom_output_added_cb() function
  * @see eom_set_output_added_cb()
  * @see eom_unset_output_added_cb()
  */
@@ -149,7 +149,7 @@ typedef void (*eom_output_added_cb)(eom_output_id output_id, void *user_data);
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @param[in] output_id  The output id which is connected output
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_output_removed_cb function
+ *                                   eom_output_removed_cb() function
  * @see eom_set_output_removed_cb()
  * @see eom_unset_output_removed_cb()
  */
@@ -161,7 +161,7 @@ typedef void (*eom_output_removed_cb)(eom_output_id output_id, void *user_data);
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @param[in] output_id  The output id which is connected output
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_mode_changed_cb function
+ *                                   eom_mode_changed_cb() function
  * @see eom_set_mode_changed_cb()
  * @see eom_unset_mode_changed_cb()
  */
@@ -173,7 +173,7 @@ typedef void (*eom_mode_changed_cb)(eom_output_id output_id, void *user_data);
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @param[in] output_id  The output id which is connected output
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_attribute_changed_cb function
+ *                                   eom_attribute_changed_cb() function
  * @see eom_set_attribute_changed_cb()
  * @see eom_unset_attribute_changed_cb()
  */
@@ -205,10 +205,10 @@ void eom_deinit(void);
  * @brief Registers a callback function to get output connection notification
  *           from External Output Manager (EOM) module.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_output_added_cb callback
+ * @param[in] callback  The function pointer of eom_output_added_cb() callback
  *                                function
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_output_added_cb function
+ *                                   eom_output_added_cb() function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
  * @retval #EOM_ERROR_OUT_OF_MEMORY Memory allocation failure
@@ -223,7 +223,7 @@ int eom_set_output_added_cb(eom_output_added_cb callback, void *user_data);
 /**
  * @brief Unregisters the callback function.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_output_added_cb callback
+ * @param[in] callback  The function pointer of eom_output_added_cb() callback
  *                                function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
@@ -239,10 +239,10 @@ int eom_unset_output_added_cb(eom_output_added_cb callback);
  * @brief Registers a callback function to get output disconnection
  *           notification from External Output Manager (EOM) module.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_output_removed_cb callback
+ * @param[in] callback  The function pointer of eom_output_removed_cb() callback
  *                                function
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_output_removed_cb function
+ *                                   eom_output_removed_cb() function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
  * @retval #EOM_ERROR_OUT_OF_MEMORY Memory allocation failure
@@ -257,7 +257,7 @@ int eom_set_output_removed_cb(eom_output_removed_cb callback, void *user_data);
 /**
  * @brief Unregisters the callback function.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_output_removed_cb callback
+ * @param[in] callback  The function pointer of eom_output_removed_cb() callback
  *                                function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
@@ -273,10 +273,10 @@ int eom_unset_output_removed_cb(eom_output_removed_cb callback);
  * @brief Registers a callback function to get output mode changing
  *           notification from External Output Manager (EOM) module.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_mode_changed_cb callback
+ * @param[in] callback  The function pointer of eom_mode_changed_cb() callback
  *                                function
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_mode_changed_cb function
+ *                                   eom_mode_changed_cb() function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
  * @retval #EOM_ERROR_OUT_OF_MEMORY Memory allocation failure
@@ -291,7 +291,7 @@ int eom_set_mode_changed_cb(eom_mode_changed_cb callback, void *user_data);
 /**
  * @brief Unregisters the callback function.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_mode_changed_cb callback
+ * @param[in] callback  The function pointer of eom_mode_changed_cb() callback
  *                                function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
@@ -307,10 +307,10 @@ int eom_unset_mode_changed_cb(eom_mode_changed_cb callback);
  * @brief Registers a callback function to get output attribute changing
  *           notification from External Output Manager (EOM) module.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_attribute_changed_cb
+ * @param[in] callback  The function pointer of eom_attribute_changed_cb()
  *                                callback function
  * @param[in] user_data  The pointer of user data which is passed to
- *                                   eom_attribute_changed_cb function
+ *                                   eom_attribute_changed_cb() function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful
  * @retval #EOM_ERROR_OUT_OF_MEMORY Memory allocation failure
@@ -325,7 +325,7 @@ int eom_set_attribute_changed_cb(eom_attribute_changed_cb callback, void *user_d
 /**
  * @brief Unregisters the callback function.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @param[in] callback  The function pointer of eom_attribute_changed_cb
+ * @param[in] callback  The function pointer of eom_attribute_changed_cb()
  *                                callback function
  * @return 0 on success, otherwise a negative error value
  * @retval #EOM_ERROR_NONE Successful