sync with private git. updated the license and the boilerplates
[apps/home/quickpanel.git] / daemon / modules.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *  http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __QP_MODULES_H__
18 #define __QP_MODULES_H__
19
20 #include <stdlib.h>
21 #include "quickpanel-ui.h"
22
23 extern int init_modules(void *data);
24 extern int fini_modules(void *data);
25 extern int suspend_modules(void *data);
26 extern int resume_modules(void *data);
27 extern int hib_enter_modules(void *data);
28 extern int hib_leave_modules(void *data);
29 extern void lang_change_modules(void *data);
30 extern void refresh_modules(void *data);
31 extern int qp_opened_modules(void *data);
32 extern int qp_closed_modules(void *data);
33
34 #endif /* __QP_MODULES_H__ */