*
* @section CAPI_MEDIA_CONTROLLER_OVERVIEW Overview
* The @ref CAPI_MEDIA_CONTROLLER_MODULE API provides a set of functions to an effective communication between the server and the client for delivering the latest server information. It helps to transfer the information like playback info, shuffle mode, or the metadata of the latest server. \n
- * To programming the interface, first, create a handler via #mc_client_create() or #mc_server_create(). And then, the client request the necessary information to the server by using #mc_client_set_server_updated_cb(), or #mc_client_set_playback_updated_cb(). The server provides the requested information to the client by the callback.
+ * To programming the interface, first, create a handler via mc_client_create() or mc_server_create(). And then, the client request the necessary information to the server by using mc_client_set_server_updated_cb(), or mc_client_set_playback_updated_cb(). The server provides the requested information to the client by the callback.
*
*/
* \#include <media_controller_server.h>
*
* @section CAPI_MEDIA_CONTROLLER_SERVER_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_SERVER_MODULE API allows you to send the playback info (#mc_server_set_playback_state(), #mc_server_set_playback_position(), #mc_server_set_playlist_item_info()), the metadata (#mc_server_set_metadata() and playlist (#mc_server_set_playlist_item_info(), #mc_server_create_playlist()). and to receive the custom command (#mc_server_set_custom_cmd_received_cb()), to update the status information on the latest server (#mc_server_update_playback_info(), #mc_server_update_metadata(). \n
-* Before doing those things you should create handle(#mc_server_create()). And if you don't use handle anymore, you have to destroy it(#mc_server_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_SERVER_MODULE API allows you to send the playback info (mc_server_set_playback_state(), mc_server_set_playback_position(), mc_server_set_playlist_item_info()), the metadata (mc_server_set_metadata() and playlist (mc_server_set_playlist_item_info(), mc_server_create_playlist()). and to receive the custom command (mc_server_set_custom_cmd_received_cb()), to update the status information on the latest server (mc_server_update_playback_info(), mc_server_update_metadata(). \n
+* Before doing those things you should create handle(mc_server_create()). And if you don't use handle anymore, you have to destroy it(mc_server_destroy()).
*
*/
* \#include <media_controller_client.h>
*
* @section CAPI_MEDIA_CONTROLLER_CLIENT_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_CLIENT_MODULE API allows you to check the activated server status (#mc_client_set_server_updated_cb()), the playback info (#mc_client_set_playback_updated_cb()), the metadata (#mc_client_set_metadata_updated_cb()) or the playlist(#mc_client_set_playlist_updated_cb()). \n
-* And client can send the custom command to server(#mc_client_send_custom_cmd()). \n
-* Before doing those things you should create handle(#mc_client_create()). And if you don't use handle anymore, you have to destroy it(#mc_client_destroy()).
-* If there is no the activated server, you can get the latest server information by using #mc_client_get_latest_server_info().
+* The @ref CAPI_MEDIA_CONTROLLER_CLIENT_MODULE API allows you to check the activated server status (mc_client_set_server_updated_cb()), the playback info (mc_client_set_playback_updated_cb()), the metadata (mc_client_set_metadata_updated_cb()) or the playlist(mc_client_set_playlist_updated_cb()). \n
+* And client can send the custom command to server(mc_client_send_custom_cmd()). \n
+* Before doing those things you should create handle(mc_client_create()). And if you don't use handle anymore, you have to destroy it(mc_client_destroy()).
+* If there is no the activated server, you can get the latest server information by using mc_client_get_latest_server_info().
*
*/
* \#include <media_controller_playlist.h>
*
* @section CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE API allows you to get playlist name and its items (#mc_playlist_get_name() and #mc_playlist_foreach_item()). \n
-* You can copy the playlist by using #mc_playlist_clone(). And if you don't use handle anymore, you have to destroy it(#mc_playlist_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_PLAYLIST_MODULE API allows you to get playlist name and its items (mc_playlist_get_name() and mc_playlist_foreach_item()). \n
+* You can copy the playlist by using mc_playlist_clone(). And if you don't use handle anymore, you have to destroy it(mc_playlist_destroy()).
*
*/
* \#include <media_controller_metadata.h>
*
* @section CAPI_MEDIA_CONTROLLER_METADAT_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_METADATA_MODULE API allows you to get metadata (#mc_metadata_get()). \n
-* You can copy the metadata by using #mc_metadata_clone(). And if you don't use handle anymore, you have to destroy it(#mc_metadata_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_METADATA_MODULE API allows you to get metadata (mc_metadata_get()). \n
+* You can copy the metadata by using mc_metadata_clone(). And if you don't use handle anymore, you have to destroy it(mc_metadata_destroy()).
*
*/
* \#include <media_controller_metadata.h>
*
* @section CAPI_MEDIA_CONTROLLER_ABILITY_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_ABILITY_MODULE API allows you to get playback action ability (#mc_playback_action_is_supported()). \n
-* You can copy the ability by using #mc_playback_ability_clone(). And if you don't use handle anymore, you have to destroy it(#mc_playback_ability_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_ABILITY_MODULE API allows you to get playback action ability (mc_playback_action_is_supported()). \n
+* You can copy the ability by using mc_playback_ability_clone(). And if you don't use handle anymore, you have to destroy it(mc_playback_ability_destroy()).
*
*/
* \#include <media_controller_metadata.h>
*
* @section CAPI_MEDIA_CONTROLLER_SEARCH_MODULE_OVERVIEW Overview
-* The @ref CAPI_MEDIA_CONTROLLER_SEARCH_MODULE API allows you to create handle for searching (#mc_search_create()). \n
-* You can set and get search conditions (#mc_search_set_condition() and #mc_search_foreach_condition()). \n
-* And copy the search by using #mc_search_clone(). And if you don't use handle anymore, you have to destroy it(#mc_search_destroy()).
+* The @ref CAPI_MEDIA_CONTROLLER_SEARCH_MODULE API allows you to create handle for searching (mc_search_create()). \n
+* You can set and get search conditions (mc_search_set_condition() and mc_search_foreach_condition()). \n
+* And copy the search by using mc_search_clone(). And if you don't use handle anymore, you have to destroy it(mc_search_destroy()).
*
*/