|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Private keys for Voice mailbox. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VOICEMAILBOXAPPPRIVATECRKEYS_H |
|
20 #define VOICEMAILBOXAPPPRIVATECRKEYS_H |
|
21 #include <e32std.h> |
|
22 |
|
23 /** VoiceMailbox Settings API */ |
|
24 /** Provides access to the VoiceMailbox numbers and settings */ |
|
25 |
|
26 const TUid KCRUidVoiceMailbox = {0x101F874F}; |
|
27 |
|
28 |
|
29 /** Voice Message Date Stamp, a field in VMN |
|
30 * |
|
31 * Text type |
|
32 * |
|
33 * Default value: "" |
|
34 **/ |
|
35 const TUint32 KVmDateStamp = 0x00000003; |
|
36 |
|
37 /** |
|
38 * Voice message counter, a field in VMN to indicate how many messages are waiting on the network side |
|
39 * |
|
40 * Integer type |
|
41 * |
|
42 * Default value: 0 |
|
43 **/ |
|
44 const TUint32 KVmMessageCounter = 0x00000004; |
|
45 |
|
46 /** |
|
47 * Voicemail Summary Info Set flag, a field in VMN |
|
48 * |
|
49 * Integer type |
|
50 * |
|
51 * Possible values: |
|
52 * 0 (not set) |
|
53 * 1 (set) |
|
54 * |
|
55 * Default value: 0 |
|
56 **/ |
|
57 const TUint32 KVmSummaryInfoIsSet = 0x00000005; |
|
58 |
|
59 /** |
|
60 * Voice Message Time Stamp, a field in VMN |
|
61 * |
|
62 * Text type |
|
63 * |
|
64 * Default value: "" |
|
65 **/ |
|
66 const TUint32 KVmTimeStamp = 0x00000006; |
|
67 |
|
68 /** |
|
69 * Voice Message Urgency Level, |
|
70 * |
|
71 * Integer type |
|
72 * |
|
73 * Possible values: |
|
74 * 0 (ENormal) |
|
75 * 1 (EInteractive) |
|
76 * 2 (EUrgent) |
|
77 * 3 (EEmergency) |
|
78 * |
|
79 * Default value: 0 |
|
80 **/ |
|
81 const TUint32 KVmUrgencyLevel = 0x00000007; |
|
82 |
|
83 /** Voice Message User Data, VMS field |
|
84 * |
|
85 * Text type |
|
86 * |
|
87 * Default value: "" |
|
88 **/ |
|
89 const TUint32 KVmUserData = 0x00000008; |
|
90 |
|
91 |
|
92 /** Voice Message CDMA Operator Option to enable or disable UI for the user to |
|
93 * view or modify his/her voicemail box number |
|
94 * |
|
95 * Integer type |
|
96 * |
|
97 * Default value: 2 |
|
98 **/ |
|
99 const TUint32 KVmUIOpts = 0x00000010; |
|
100 |
|
101 /** ring time index for i-Mode vmbx |
|
102 * |
|
103 * Integer type |
|
104 * |
|
105 * Default value: 2 |
|
106 */ |
|
107 const TUint32 KVoiceMbxRingTimeIndex = 0x00000014; |
|
108 |
|
109 #endif // VOICEMAILBOXAPPPRIVATECRKEYS_H |