Change return value type of the appcore_ui_base_group_add function
[platform/core/appfw/app-core.git] / include / appcore_ui_base.h
index f787082..1eddefa 100644 (file)
@@ -27,6 +27,7 @@ typedef struct _appcore_ui_base_window_ops {
        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);
+       void (*aux_message)(int type, void *event, void *data);
 } appcore_ui_base_window_ops;
 
 typedef struct _appcore_ui_base_ops {
@@ -61,6 +62,7 @@ void appcore_ui_base_window_on_hide(int type, void *event);
 void appcore_ui_base_window_on_lower(int type, void *event);
 void appcore_ui_base_window_on_visibility(int type, void *event);
 void appcore_ui_base_window_on_pre_visibility(int type, void *event);
+void appcore_ui_base_window_on_aux_message(int type, void *event);
 int appcore_ui_base_init(appcore_ui_base_ops ops, int argc, char **argv,
                void *data, unsigned int hint);
 void appcore_ui_base_fini(void);
@@ -69,7 +71,7 @@ void appcore_ui_base_pause(void);
 void appcore_ui_base_resume(void);
 bool appcore_ui_base_is_resumed(void);
 void appcore_ui_base_exit(void);
-void appcore_ui_base_group_add();
+int appcore_ui_base_group_add();
 void appcore_ui_base_group_remove();
 unsigned int appcore_ui_base_get_main_window(void);
 unsigned int appcore_ui_base_get_main_surface(void);