'mm_wfd_sink_get_state' api returns 'current' state of screen mirroring.
So i change name of this api to 'mm_wfd_sink_get_current_state'.
Change-Id: Ibd7bce33c90945cc8a60b75cbd651539f8c22871
Signed-off-by: Hyunsoo Park <hance.park@samsung.com>
Name: libmm-wfd
Summary: Multimedia Framework Wifi-Display Library
-Version: 0.2.235
+Version: 0.2.236
Release: 0
Group: System/Libraries
License: Apache-2.0
int mm_wfd_sink_get_negotiated_audio_bitwidth(MMHandleType wfd_sink_handle, gint *bitwidth);
/**
- * This function gets the state for wi-fi display sink\n
+ * This function gets the current state for wi-fi display sink\n
*
* @param wfd_sink_handle [in] Handle of wi-fi display sink
* @param state [out] Current state of wi-fi display sink
* @return This function returns zero on success, or negative value with error code.
*
*/
-int mm_wfd_sink_get_state(MMHandleType wfd_sink_handle, gint *state);
+int mm_wfd_sink_get_current_state(MMHandleType wfd_sink_handle, gint *state);
#endif
return result;
}
-int mm_wfd_sink_get_state(MMHandleType wfd_sink_handle, gint *state)
+int mm_wfd_sink_get_current_state(MMHandleType wfd_sink_handle, gint *state)
{
mm_wfd_sink_t *wfd_sink = (mm_wfd_sink_t *)wfd_sink_handle;
int result = MM_ERROR_NONE;