From: Junghoon Park Date: Fri, 14 Jul 2017 04:50:19 +0000 (+0900) Subject: Change type name X-Git-Tag: accepted/tizen/unified/20170724.020234~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=6e4d7a91443ea5f2049ea56e8a16a35e44c2f178;p=platform%2Fcore%2Fappfw%2Fapp-core.git Change type name - Because of type conflict, appcore_ui_base_window_ops should be changed to appcore_multiwindow_base_window_ops Change-Id: I92b583ae195fcc941f64e3205d651178eebcdc4a Signed-off-by: Junghoon Park --- diff --git a/include/appcore_multiwindow_base.h b/include/appcore_multiwindow_base.h index 9cec71f..7840fd1 100644 --- a/include/appcore_multiwindow_base.h +++ b/include/appcore_multiwindow_base.h @@ -22,17 +22,17 @@ #include #include -typedef struct _appcore_ui_base_window_ops { +typedef struct _appcore_multiwindow_base_window_ops { void (*show)(int type, void *event, void *data); void (*hide)(int type, void *event, void *data); void (*lower)(int type, void *event, void *data); void (*visibility)(int type, void *event, void *data); void (*pre_visibility)(int type, void *event, void *data); -} appcore_ui_base_window_ops; +} appcore_multiwindow_base_window_ops; typedef struct _appcore_multiwindow_base_ops { appcore_base_ops base; - appcore_ui_base_window_ops window; + appcore_multiwindow_base_window_ops window; } appcore_multiwindow_base_ops; typedef void *appcore_multiwindow_base_instance_h;