From 395bf9640fa2b204050b9b7a337534d61456a16b Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Mon, 8 Apr 2019 16:00:36 +0900 Subject: [PATCH] add () after function name Change-Id: Ia29b5ff9ea740e8277f93eb88c70a4969ac8dbed Signed-off-by: Junkyeong Kim --- include/eom.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/include/eom.h b/include/eom.h index 735abd4..8f90dfb 100644 --- a/include/eom.h +++ b/include/eom.h @@ -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 -- 2.7.4