1 gsmunmspacemobstore.h |
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Multimode SMS common API header file. |
|
15 // Describes common Telephony interface types for SMS stores. |
|
16 // The types are duplicated from ETELMM.h in an effort to separate SMS from ETEL. |
|
17 // Correspondent ETEL types could be found in ETELMM.h, class RMobileSmsStore. |
|
18 // |
|
19 // |
|
20 |
|
21 |
|
22 |
|
23 /** |
|
24 @file |
|
25 @publishedAll |
|
26 @released |
|
27 */ |
|
28 |
|
29 #ifndef __GSMUNMSPACEMOBSTORE_H__ |
|
30 #define __GSMUNMSPACEMOBSTORE_H__ |
|
31 |
|
32 |
|
33 /** |
|
34 * Defines contents of a fixed-size, stored SMS entry. |
|
35 * |
|
36 * Modes: Common |
|
37 * |
|
38 * These types are duplicated from ETELMM.h. |
|
39 * |
|
40 * @see class RMobileSmsStore |
|
41 */ |
|
42 namespace NMobileSmsStore |
|
43 { |
|
44 enum TMobileSmsStoreStatus |
|
45 { |
|
46 /** The status of the SMS is unknown.*/ |
|
47 EStoredMessageUnknownStatus, |
|
48 /** |
|
49 * The SMS is stored phone-side. It is an incoming message |
|
50 * that has not been read yet. |
|
51 */ |
|
52 EStoredMessageUnread, |
|
53 /** |
|
54 * The SMS is stored phone-side. It is an incoming message |
|
55 * that has already been read. |
|
56 */ |
|
57 EStoredMessageRead, |
|
58 /** |
|
59 * The SMS is stored phone-side. It is an outgoing message |
|
60 * that has not been sent yet. |
|
61 */ |
|
62 EStoredMessageUnsent, |
|
63 /** |
|
64 * The SMS is stored phone-side. It is an outgoing message |
|
65 * that has already been sent but a delivery/status report has |
|
66 * either not been received yet or was not requested in the first |
|
67 * place. |
|
68 */ |
|
69 EStoredMessageSent, |
|
70 /** |
|
71 * The SMS is stored phone-side. It is an outgoing message |
|
72 * that has already been sent and a delivery/status report has |
|
73 * been received |
|
74 */ |
|
75 EStoredMessageDelivered |
|
76 }; |
|
77 } |
|
78 |
|
79 #endif // __GSMUNMSPACEMOBSTORE_H__ |