diff options
Diffstat (limited to 'inc/home/home_manager.h')
-rwxr-xr-x | inc/home/home_manager.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/inc/home/home_manager.h b/inc/home/home_manager.h new file mode 100755 index 0000000..d826f60 --- /dev/null +++ b/inc/home/home_manager.h @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2013 - 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Flora License, Version 1.1 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://floralicense.org/license/ + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __HOME_MANAGER_H__ +#define __HOME_MANAGER_H__ + +#include <app.h> + +#include "home/home_state.h" + +bool home_create_cb(void *data); +void home_app_control_cb(app_control_h app_control, void *data); +void home_resume_cb(void *data); +void home_pause_cb(void *data); +void home_terminate_cb(void *data); +void home_language_changed_cb(app_event_info_h event_info, void *user_data); + +HOME_STATE *home_get_current_state(void); +void home_add_terminate_cb(void(*cb)(void *data)); +void home_del_terminate_cb(void(*cb)(void *data)); + + +#endif |