update tizen source
[framework/messaging/msg-service.git] / include / utils / MsgGconfWrapper.h
1 /*
2 *
3 * Copyright (c) 2000-2012 Samsung Electronics Co., Ltd. All Rights Reserved.
4 *
5 * This file is part of msg-service.
6 *
7 * Contact: Jaeyun Jeong <jyjeong@samsung.com>
8 *          Sangkoo Kim <sangkoo.kim@samsung.com>
9 *          Seunghwan Lee <sh.cat.lee@samsung.com>
10 *          SoonMin Jung <sm0415.jung@samsung.com>
11 *          Jae-Young Lee <jy4710.lee@samsung.com>
12 *          KeeBum Kim <keebum.kim@samsung.com>
13 *
14 * PROPRIETARY/CONFIDENTIAL
15 *
16 * This software is the confidential and proprietary information of
17 * SAMSUNG ELECTRONICS ("Confidential Information"). You shall not
18 * disclose such Confidential Information and shall use it only in
19 * accordance with the terms of the license agreement you entered
20 * into with SAMSUNG ELECTRONICS.
21 *
22 * SAMSUNG make no representations or warranties about the suitability
23 * of the software, either express or implied, including but not limited
24 * to the implied warranties of merchantability, fitness for a particular
25 * purpose, or non-infringement. SAMSUNG shall not be liable for any
26 * damages suffered by licensee as a result of using, modifying or
27 * distributing this software or its derivatives.
28 *
29 */
30
31 #ifndef MSG_GCONF_WRAPPER_H
32 #define MSG_GCONF_WRAPPER_H
33
34 //#define USE_GCONF
35 /*==================================================================================================
36                                          INCLUDE FILES
37 ==================================================================================================*/
38 #include "MsgInternalTypes.h"
39
40 #ifdef USE_GCONF
41 #include <gconf/gconf-client.h>
42 #include <glib.h>
43 #else
44 #include <vconf.h>
45 #endif
46
47 /*==================================================================================================
48                                          STRUCTURES
49 ==================================================================================================*/
50 #ifdef USE_GCONF
51 typedef struct _MSG_GOBJECT_CLIENT_S
52 {
53         GObject* object;
54 }MSG_GOBJECT_CLIENT_S;
55 #endif
56
57
58 /*==================================================================================================
59                                      FUNCTION PROTOTYPES
60 ==================================================================================================*/
61 MSG_ERROR_T     MsgSettingSetString(const char *pKey, const char *pSetValue);
62 MSG_ERROR_T     MsgSettingSetInt(const char *pKey, int nSetValue);
63 MSG_ERROR_T     MsgSettingSetBool(const char *pKey, bool bSetValue);
64
65 char*                   MsgSettingGetString(const char *pKey);
66 int                             MsgSettingGetInt(const char *pKey);
67 int                             MsgSettingGetBool(const char *pKey, bool *pVal);
68
69 MSG_ERROR_T     MsgSettingHandleNewMsg(int SmsCnt, int MmsCnt);
70 MSG_ERROR_T     MsgSettingSetIndicator(int SmsCnt, int MmsCnt);
71
72 #endif // MSG_GCONF_WRAPPER_H