rename init/shutdown in ipc
[platform/core/uifw/mmi-framework.git] / src / mmi-client.c
index a1626be..eb047e6 100644 (file)
@@ -30,7 +30,7 @@ int mmi_client_create(void)
                return MMI_ERROR_OUT_OF_MEMORY;
        }
 
-       if (mmi_ipc_init()) {
+       if (mmi_ipc_initialize()) {
                LOGE("Failed to init mmi ipc !\n");
                if(mmi_h != NULL) {
                        free(mmi_h);
@@ -53,7 +53,7 @@ int mmi_client_destroy(void)
                return MMI_ERROR_NONE;
        }
 
-       mmi_ipc_shutdown();
+       mmi_ipc_deinitialize();
 
        GList *iter = NULL;
        mmi_result_cb_s *data = NULL;