Revert "Add parameter for stte_unset_audio_type_set_cb to fix issue for utc" 46/214746/2 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.020444 accepted/tizen/5.5/unified/mobile/hotfix/20201027.080201 accepted/tizen/unified/20191006.223555 submit/tizen/20190926.053537 submit/tizen/20191001.004149 submit/tizen_5.5/20191031.000005 submit/tizen_5.5_mobile_hotfix/20201026.185105 tizen_5.5.m2_release
authorsungwook park <sungwook79.park@samsung.com>
Thu, 26 Sep 2019 05:18:29 +0000 (05:18 +0000)
committerwn.jang <wn.jang@samsung.com>
Thu, 26 Sep 2019 05:27:10 +0000 (14:27 +0900)
This reverts commit c482162dd98f4b76f870f6c861f6ca2e3f80ebd3.

Change-Id: Ib6ff0f45d563b452198e35bb46788c99c28526c8

include/stte.h
server/stte.c

index 6524155..655aebb 100755 (executable)
@@ -837,7 +837,6 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback_func, void* user_data
 /**
 * @brief Unsets a callback function for setting the audio type.
 * @since_tizen 5.5
-* @param[in] callback_func stte_audio_type_set event callback function
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #STTE_ERROR_NONE Successful
@@ -846,7 +845,7 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback_func, void* user_data
 * @pre The stte_main() function should be invoked before this function is called.
 * @see stte_set_audio_type_set_cb()
 */
-int stte_unset_audio_type_set_cb(stte_audio_type_cb callback_func);
+int stte_unset_audio_type_set_cb(void);
 
 
 #ifdef __cplusplus
index bcc97c1..04b86ad 100755 (executable)
@@ -125,7 +125,7 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback, void* user_data)
        return ret;
 }
 
-int stte_unset_audio_type_set_cb(stte_audio_type_cb callback)
+int stte_unset_audio_type_set_cb(void)
 {
        SLOG(LOG_INFO, TAG_STTD, "[Server Info] Unset audio type set callback");