update tizen source
[framework/messaging/msg-service.git] / include / msg_helper / MsgHelper.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_HELPER_H
32 #define MSG_HELPER_H
33
34
35 #include "MsgTypes.h"
36
37 /*==================================================================================================
38                                         DEFINES
39 ==================================================================================================*/
40
41 #define MSG_SOUND_START "SOUND_START"
42 #define MSG_SOUND_STOP          "SOUND_STOP"
43
44 #define MAX_SOUND_FILE_LEN 1024
45
46 #define DEFAULT_FILE            "/usr/share/media/Sherbet.wav"
47 #define ALERT_ON_CALL_TONE      "/opt/etc/msg-service/alert_on_call.mp3"
48
49 #define HAPTIC_TEST_ITERATION 1
50 #define MSG_VIBRATION_INTERVAL 3000
51
52
53 /*==================================================================================================
54                                         FUNCTION PROTOTYPES
55 ==================================================================================================*/
56
57 // SoundPlayer
58 MSG_ERROR_T MsgSoundPlayUninit();
59 void MsgSoundPlayStart();
60 void MsgSoundPlayStop();
61 int MsgSoundPlayMelody(char *pMsgToneFilePath, bool bIncreasing);
62 void MsgSoundPlayVibration();
63
64
65 #endif // MSG_HELPER_H