From: DoHyun Pyun Date: Mon, 21 Oct 2019 06:46:52 +0000 (+0900) Subject: Fix Native API reference issues X-Git-Tag: submit/tizen/20191031.005137~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e20d2ff37c4d643c64fec663de6f5063c99cc7b;p=platform%2Fcore%2Fapi%2Fbluetooth.git Fix Native API reference issues Change-Id: Ie851a93bd3a18ed093f717dba32314878412f6da Signed-off-by: DoHyun Pyun --- diff --git a/doc/bluetooth_doc.h b/doc/bluetooth_doc.h index c93303b..47ecf1d 100644 --- a/doc/bluetooth_doc.h +++ b/doc/bluetooth_doc.h @@ -94,6 +94,7 @@ * * bt_adapter_visibility_mode_changed_cb() * Used to set visibility mode (#bt_adapter_visibility_mode_e). + * * * * bt_adapter_start_device_discovery()
diff --git a/include/bluetooth.h b/include/bluetooth.h index 7f66769..6a50145 100644 --- a/include/bluetooth.h +++ b/include/bluetooth.h @@ -4536,7 +4536,7 @@ int bt_gatt_client_unset_att_mtu_changed_cb(bt_gatt_client_h client); * @retval #BT_ERROR_NOT_SUPPORTED Not supported * * @see bt_gatt_client_characteristic_value_changed_cb() - * @see bt_gatt_client_unset_characteristic_value_change() + * @see bt_gatt_client_unset_characteristic_value_changed_cb() */ int bt_gatt_client_set_characteristic_value_changed_cb(bt_gatt_h characteristic, bt_gatt_client_characteristic_value_changed_cb callback, diff --git a/include/bluetooth_type.h b/include/bluetooth_type.h index 97daa26..03c0206 100644 --- a/include/bluetooth_type.h +++ b/include/bluetooth_type.h @@ -1343,8 +1343,8 @@ typedef void (*bt_socket_connection_requested_cb) (int socket_fd, const char *re * @ingroup CAPI_NETWORK_BLUETOOTH_OPP_SERVER_MODULE * @brief Called when an OPP connection is requested. * - * @details You must call bt_opp_server_accept_connection() if you want to accept. - * Otherwise, you must call bt_opp_server_reject_connection(). + * @details You must call bt_opp_server_accept() if you want to accept. + * Otherwise, you must call bt_opp_server_reject(). * @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif * @param[in] remote_address The address of remote device * @param[in] user_data The user data passed from the callback registration function @@ -1363,7 +1363,6 @@ typedef void (*bt_opp_server_connection_requested_cb)(const char *remote_address * @param[in] percent The progress in percentage (1 ~ 100) * @param[in] user_data The user data passed from the callback registration function * @see bt_opp_server_accept() - * @see bt_opp_server_accept_connection() */ typedef void (*bt_opp_server_transfer_progress_cb) (const char *file, long long size, int percent, void *user_data); @@ -1377,7 +1376,6 @@ typedef void (*bt_opp_server_transfer_progress_cb) (const char *file, long long * @param[in] size The file size (bytes) * @param[in] user_data The user data passed from the callback registration function * @see bt_opp_server_accept() - * @see bt_opp_server_accept_connection() */ typedef void (*bt_opp_server_transfer_finished_cb) (int result, const char *file, long long size, void *user_data);