po: move translation files
[apps/core/preloaded/indicator-win.git] / inc / modules.h
1 /*
2  *  Indicator
3  *
4  * Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20
21 #ifndef __INDICATOR_MODULES_H__
22 #define __INDICATOR_MODULES_H__
23
24 #include <Ecore.h>
25
26 #include "main.h"
27 #include "list.h"
28
29 #define TIMER_STOP      ECORE_CALLBACK_CANCEL
30 #define TIMER_CONTINUE  ECORE_CALLBACK_RENEW
31
32 extern void modules_init(void *data);
33 extern void modules_fini(void *data);
34 extern void modules_lang_changed(void *data);
35 extern void modules_region_changed(void *data);
36 extern void modules_minictrl_control(int action, const char* name, void *data);
37 extern void modules_wake_up(void *data);
38 extern void modules_init_first(void *data);
39
40 #ifdef _SUPPORT_SCREEN_READER
41 extern void modules_register_tts(void *data);
42 #endif
43 #endif