update tizen source
[framework/messaging/msg-service.git] / include / framework / MsgSettingHandler.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_SETTING_HANDLER_H
32 #define MSG_SETTING_HANDLER_H
33
34
35 /*==================================================================================================
36                                         INCLUDE FILES
37 ==================================================================================================*/
38 #include "MsgSettingTypes.h"
39
40
41 /*==================================================================================================
42                                         FUNCTION PROTOTYPES
43 ==================================================================================================*/
44 MSG_ERROR_T MsgInitSimConfig(MSG_SIM_STATUS_T SimStatus);
45
46 MSG_ERROR_T MsgSetConfigData(const MSG_SETTING_S *pSetting);
47 MSG_ERROR_T MsgGetConfigData(MSG_SETTING_S *pSetting);
48
49 MSG_ERROR_T MsgSetGeneralOpt(const MSG_SETTING_S *pSetting);
50 MSG_ERROR_T MsgSetSMSSendOpt(const MSG_SETTING_S *pSetting);
51 MSG_ERROR_T MsgSetSMSCList(const MSG_SETTING_S *pSetting, bool bSetSim);
52 MSG_ERROR_T MsgSetMMSSendOpt(const MSG_SETTING_S *pSetting);
53 MSG_ERROR_T MsgSetMMSRecvOpt(const MSG_SETTING_S *pSetting);
54 MSG_ERROR_T MsgSetMMSStyleOpt(const MSG_SETTING_S *pSetting);
55 MSG_ERROR_T MsgSetPushMsgOpt(const MSG_SETTING_S *pSetting);
56 MSG_ERROR_T MsgSetCBMsgOpt(const MSG_SETTING_S *pSetting, bool bSetSim);
57 MSG_ERROR_T MsgSetVoiceMailOpt(const MSG_SETTING_S *pSetting);
58 MSG_ERROR_T MsgSetMsgSizeOpt(const MSG_SETTING_S *pSetting);
59
60 void MsgGetGeneralOpt(MSG_SETTING_S *pSetting);
61 void MsgGetSMSSendOpt(MSG_SETTING_S *pSetting);
62 void MsgGetSMSCList(MSG_SETTING_S *pSetting);
63 void MsgGetMMSSendOpt(MSG_SETTING_S *pSetting);
64 void MsgGetMMSRecvOpt(MSG_SETTING_S *pSetting);
65 void MsgGetMMSStyleOpt(MSG_SETTING_S *pSetting);
66 void MsgGetPushMsgOpt(MSG_SETTING_S *pSetting);
67 void MsgGetCBMsgOpt(MSG_SETTING_S *pSetting);
68 void MsgGetVoiceMailOpt(MSG_SETTING_S *pSetting);
69 void MsgGetMsgSizeOpt(MSG_SETTING_S *pSetting);
70
71 MSG_ERROR_T MsgSetConfigInSim(const MSG_SETTING_S *pSetting);
72
73
74 #endif
75