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 "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
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.
27 #ifndef __GSMUNMSPACEMOBSTORE_H__
28 #define __GSMUNMSPACEMOBSTORE_H__
32 * Defines contents of a fixed-size, stored SMS entry.
36 * These types are duplicated from ETELMM.h.
38 * @see class RMobileSmsStore
40 namespace NMobileSmsStore
42 enum TMobileSmsStoreStatus
44 /** The status of the SMS is unknown.*/
45 EStoredMessageUnknownStatus,
47 * The SMS is stored phone-side. It is an incoming message
48 * that has not been read yet.
52 * The SMS is stored phone-side. It is an incoming message
53 * that has already been read.
57 * The SMS is stored phone-side. It is an outgoing message
58 * that has not been sent yet.
62 * The SMS is stored phone-side. It is an outgoing message
63 * that has already been sent but a delivery/status report has
64 * either not been received yet or was not requested in the first
69 * The SMS is stored phone-side. It is an outgoing message
70 * that has already been sent and a delivery/status report has
73 EStoredMessageDelivered
77 #endif // __GSMUNMSPACEMOBSTORE_H__