williamr@4: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@4: // All rights reserved. williamr@4: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@4: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: // williamr@4: // Initial Contributors: williamr@4: // Nokia Corporation - initial contribution. williamr@4: // williamr@4: // Contributors: williamr@4: // williamr@4: // Description: williamr@4: // Errors code for serialization and deserialization williamr@4: // williamr@4: williamr@4: williamr@4: williamr@4: /** williamr@4: @file williamr@4: @publishedAll williamr@4: @released williamr@4: */ williamr@4: #include williamr@4: williamr@4: #ifndef XMLENGSERIALIZERERRORS_H williamr@4: #define XMLENGSERIALIZERERRORS_H williamr@4: williamr@4: /** Serializer or deserializer was not configured correctly */ williamr@4: const TInt KXmlEngErrNoParameters = -32384; williamr@4: williamr@4: /** No binary data was found for XOP data Id */ williamr@4: const TInt KXmlEngErrBinDataNotFound = -32385; williamr@4: williamr@4: /** Base 64 decoding failed */ williamr@4: const TInt KXmlEngErrDecodingFailed = -32386; williamr@4: williamr@4: /** DOM tree does not contain XOP Infoset */ williamr@4: const TInt KXmlEngErrBadInfoset = -32387; williamr@4: williamr@4: /** The multipart document could not be parsed */ williamr@4: const TInt KXmlEngErrBadMultipart = -32388; williamr@4: williamr@4: #endif // XMLENGSERIALIZERERRORS_H williamr@4: