From 808f32526857d902c9ea4a1b3e2a71d06d0527cd Mon Sep 17 00:00:00 2001 From: saerome kim Date: Thu, 6 Jul 2017 10:58:40 +0900 Subject: [PATCH] - Fix missing 'wifi_' prefix problem Signed-off-by: saerome kim --- include/wifi-mesh-internal.h | 8 ++++---- test/wifi-mesh-network.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/wifi-mesh-internal.h b/include/wifi-mesh-internal.h index 816a838..e13f2ee 100644 --- a/include/wifi-mesh-internal.h +++ b/include/wifi-mesh-internal.h @@ -46,13 +46,13 @@ typedef enum { * @brief The mesh station information handle. * @since_tizen 4.0 */ -typedef void* mesh_station_info_h; +typedef void* wifi_mesh_station_info_h; /** * @brief The mesh path information handle. * @since_tizen 4.0 */ -typedef void* mesh_mpath_info_h; +typedef void* wifi_mesh_mpath_info_h; /** * @brief Gets the maximum data rate. @@ -169,7 +169,7 @@ int wifi_mesh_unset_gate(wifi_mesh_h handle); * * @see wifi_mesh_foreach_found_network() */ -typedef void (*wifi_mesh_found_station_cb)(mesh_station_info_h station, void* user_data); +typedef void (*wifi_mesh_found_station_cb)(wifi_mesh_station_info_h station, void* user_data); /** * @brief Get information of all connected stations. @@ -205,7 +205,7 @@ int wifi_mesh_get_stations_info(wifi_mesh_h handle, wifi_mesh_found_station_cb c * * @see wifi_mesh_foreach_found_network() */ -typedef void (*mesh_found_mpath_cb)(mesh_mpath_info_h path, void* user_data); +typedef void (*mesh_found_mpath_cb)(wifi_mesh_mpath_info_h path, void* user_data); /** * @brief Get information of all mesh paths. diff --git a/test/wifi-mesh-network.c b/test/wifi-mesh-network.c index 17bd98e..b93be11 100644 --- a/test/wifi-mesh-network.c +++ b/test/wifi-mesh-network.c @@ -98,12 +98,12 @@ static void connected_peer_cb(wifi_mesh_peer_h peer, void* user_data) free(address); } -static void found_station_cb(mesh_station_info_h station, void* user_data) +static void found_station_cb(wifi_mesh_station_info_h station, void* user_data) { msg("Station Information Received: %p", station); } -static void found_mpath_cb(mesh_mpath_info_h mpath, void* user_data) +static void found_mpath_cb(wifi_mesh_mpath_info_h mpath, void* user_data) { msg("Station Information Received: %p", mpath); } -- 2.34.1