2012/08/21: tizen 2.0 beta
[apps/home/call-setting.git] / include / cst-util.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (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://www.tizenopensource.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 _CST_UTIL_H_
18 #define _CST_UTIL_H_
19
20 #include <Elementary.h>
21 #include <ui-gadget-module.h>
22 #include <app.h>
23
24 #include "cst-common.h"
25
26 void _cst_vconf_get_bool(const char *in_key, int *boolval);
27 void _cst_vconf_get_int(const char *in_key, int *intval);
28 char *_cst_vconf_get_str(const char *in_key);
29 void _cst_vconf_set_bool(const char *in_key, const int boolval);
30 void _cst_vconf_set_int(const char *in_key, const int intval);
31 void _cst_vconf_set_str(const char *in_key, const char *strval);
32 Eina_Bool _cst_check_flight_mode(void);
33 Eina_Bool _cst_check_sim_status(void);
34 int _cst_parse_bundle(service_h service);
35 void _cst_on_click_ime_contact_btn(void *data, Evas_Object *obj, void *event_info);
36 void _cst_connect_reject_list_handle(CstUgData_t *ugd);
37 void _cst_disconnect_reject_list_handle(CstUgData_t *ugd);
38
39 #endif
40