Remove app id from core callback called by IU 85/283785/1
authorulgal-park <ulgal.park@samsung.com>
Thu, 6 Oct 2022 07:44:10 +0000 (16:44 +0900)
committerdyamy-lee <dyamy.lee@samsung.com>
Thu, 3 Nov 2022 02:21:03 +0000 (11:21 +0900)
Change-Id: If9311642f83cf802b84214f96b1fc619a7600977

src/mmimgr/mmi-core.c

index 07942ee..7a3ca01 100644 (file)
@@ -72,7 +72,7 @@ static void __send_result_to_client(gpointer data, gpointer user_data)
        }
 }
 
-static void __output_result_received_cb(const char *app_id, int type, const char *json_data, void *user_data)
+static void __output_result_received_cb(int type, const char *json_data, void *user_data)
 {
        GList *clients = client_manager_get_clients_listening_event(type);
        if (clients == NULL) {
@@ -87,7 +87,7 @@ static void __output_result_received_cb(const char *app_id, int type, const char
        g_list_free(clients);
 }
 
-static void __output_modality_received_cb(const char *app_id, int type, void *event, void *user_data)
+static void __output_modality_received_cb(int type, void *event, void *user_data)
 {
        if (type == MMI_PROVIDER_EVENT_KEY) {
                mmi_provider_event_key *key_event = (mmi_provider_event_key *)event;