diff -r 666f914201fb -r 2fe1408b6811 epoc32/include/gsmunmspacemobstore.h --- a/epoc32/include/gsmunmspacemobstore.h Tue Nov 24 13:55:44 2009 +0000 +++ b/epoc32/include/gsmunmspacemobstore.h Tue Mar 16 16:12:26 2010 +0000 @@ -1,1 +1,79 @@ -gsmunmspacemobstore.h +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// 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 +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Multimode SMS common API header file. +// Describes common Telephony interface types for SMS stores. +// The types are duplicated from ETELMM.h in an effort to separate SMS from ETEL. +// Correspondent ETEL types could be found in ETELMM.h, class RMobileSmsStore. +// +// + + + +/** + @file + @publishedAll + @released +*/ + +#ifndef __GSMUNMSPACEMOBSTORE_H__ +#define __GSMUNMSPACEMOBSTORE_H__ + + +/** + * Defines contents of a fixed-size, stored SMS entry. + * + * Modes: Common + * + * These types are duplicated from ETELMM.h. + * + * @see class RMobileSmsStore + */ +namespace NMobileSmsStore + { + enum TMobileSmsStoreStatus + { + /** The status of the SMS is unknown.*/ + EStoredMessageUnknownStatus, + /** + * The SMS is stored phone-side. It is an incoming message + * that has not been read yet. + */ + EStoredMessageUnread, + /** + * The SMS is stored phone-side. It is an incoming message + * that has already been read. + */ + EStoredMessageRead, + /** + * The SMS is stored phone-side. It is an outgoing message + * that has not been sent yet. + */ + EStoredMessageUnsent, + /** + * The SMS is stored phone-side. It is an outgoing message + * that has already been sent but a delivery/status report has + * either not been received yet or was not requested in the first + * place. + */ + EStoredMessageSent, + /** + * The SMS is stored phone-side. It is an outgoing message + * that has already been sent and a delivery/status report has + * been received + */ + EStoredMessageDelivered + }; + } + +#endif // __GSMUNMSPACEMOBSTORE_H__