From 0c79e6b3cf110c69add884b943d12e6170ba7683 Mon Sep 17 00:00:00 2001 From: hj kim Date: Mon, 24 Aug 2020 11:37:35 +0900 Subject: [PATCH] Fix doxygen error Change-Id: Id7c8cec3f416a9a73193b2f62ac10ebca9620cdf --- include/media_controller_client.h | 4 ++-- include/media_controller_server.h | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/media_controller_client.h b/include/media_controller_client.h index b96bdf6..826c2d9 100644 --- a/include/media_controller_client.h +++ b/include/media_controller_client.h @@ -256,7 +256,7 @@ typedef bool (*mc_activated_server_cb)(const char *server_name, void *user_data) * * @param[in] server_name The app_id of the media controller server which sent the reply * @param[in] request_id The id of the command request - * @param[in] result_code The result code of the action, @a mc_result_code_e since 6.0 + * @param[in] result_code The result code of the action, #mc_result_code_e since 6.0 * @param[in] data The extra data * @param[in] user_data The user data passed from the mc_client_set_cmd_reply_received_cb() function * @@ -1324,7 +1324,7 @@ int mc_client_unset_custom_event_received_cb(mc_client_h client); * @param[in] client The handle of the media controller client * @param[in] server_name The app_id of the media controller server * @param[in] request_id The id of the event request, received in the mc_client_set_custom_event_received_cb() function - * @param[in] result_code The result code of custom event, @a mc_result_code_e since 6.0 + * @param[in] result_code The result code of custom event, #mc_result_code_e since 6.0 * @param[in] data The extra data * @return @c 0 on success, * otherwise a negative error value diff --git a/include/media_controller_server.h b/include/media_controller_server.h index 0aad0d4..f90cea6 100755 --- a/include/media_controller_server.h +++ b/include/media_controller_server.h @@ -128,8 +128,8 @@ typedef void (*mc_server_repeat_mode_cmd_received_cb)(const char* client_name, c * * @remarks The callback is called in the dbus event loop. \n * If @a request_id is not null, the server should send the reply to the client with the @a request_id.\n - * The @a client_name, @a request_id, @ playlist_name and @ index should not be released by the application. \n - * The @a client_name, @a request_id, @ playlist_name and @ index can be used only in the callback. To use outside, make a copy. + * The @a client_name, @a request_id, @a playlist_name and @a index should not be released by the application. \n + * The @a client_name, @a request_id, @a playlist_name and @a index can be used only in the callback. To use outside, make a copy. * * @param[in] client_name The app_id of the media controller client * @param[in] request_id The request_id of the media controller client @@ -154,8 +154,8 @@ typedef void (*mc_server_playlist_cmd_received_cb)(const char* client_name, cons * * @remarks The callback is called in the dbus event loop. @a data should be released using bundle_free().\n * If @a request_id is not null, the server should send the reply to the client with the @a request_id.\n - * The @a client_name, @a request_id and @ command should not be released by the application. \n - * The @a client_name, @a request_id and @ command can be used only in the callback. To use outside, make a copy. + * The @a client_name, @a request_id and @a command should not be released by the application. \n + * The @a client_name, @a request_id and @a command can be used only in the callback. To use outside, make a copy. * * @param[in] client_name The app_id of the media controller client * @param[in] request_id The id of the command request @@ -1265,7 +1265,7 @@ int mc_server_unset_display_rotation_cmd_received_cb(mc_server_h server); * @param[in] server The handle to media controller server * @param[in] client_name The app_id of the media controller client * @param[in] request_id The id of the command request, received in the mc_server_custom_cmd_received_cb() function - * @param[in] result_code The result code of custom command, @a mc_result_code_e since 6.0 + * @param[in] result_code The result code of custom command, #mc_result_code_e since 6.0 * @param[in] data The extra data * @return @c 0 on success, * otherwise a negative error value -- 2.7.4