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