sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // All the error codes returned by the Symbian OS wrapper over the zlib sl@0: // library in EZLib component are defined here. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __EZLIBERRORCODES_H__ sl@0: #define __EZLIBERRORCODES_H__ sl@0: sl@0: #include sl@0: sl@0: // sl@0: // Error codes returned from the CEZDecompressor and CEZCompressor classes sl@0: // sl@0: /** The Z_STREAM_ERROR zlib error code has been returned by an internal method sl@0: due to a stream error. */ sl@0: const TInt KEZlibErrStream = -11501; sl@0: /** The Z_DATA_ERROR zlib error code has been returned by an internal method sl@0: due to a data error. */ sl@0: const TInt KEZlibErrData = -11502; sl@0: /** The Z_BUF_ERROR zlib error code has been returned by an internal method sl@0: due to a buffer error. */ sl@0: const TInt KEZlibErrBuf = -11503; sl@0: /** The Z_VERSION_ERROR zlib error code has been returned by an internal method sl@0: due to a version error. */ sl@0: const TInt KEZlibErrVersion = -11504; sl@0: /** Unexpected ezlib error. */ sl@0: const TInt KEZlibErrUnexpected = -11505; sl@0: /** Returned by ::DeflateL() if deflation has already occured. */ sl@0: const TInt KEZlibErrDeflateTerminated = -11506; sl@0: /** Returned by ::InflateL() if inflation has already occured. */ sl@0: const TInt KEZlibErrInflateTerminated = -11507; sl@0: /** An error has occured inflating the dictionary. */ sl@0: const TInt KEZlibErrInflateDictionary = -11508; sl@0: sl@0: // sl@0: // Error codes returned from GZip classes (eg EZGZipFile and CEZGZipToFile) sl@0: // sl@0: const TInt KEZlibErrNotGZipFile = -11509; sl@0: const TInt KEZlibErrInvalidCompression = -11510; sl@0: const TInt KEZlibErrBadGZipHeader = -11511; sl@0: const TInt KEZlibErrBadGZipTrailer = -11512; sl@0: const TInt KEZlibErrBadGZipCrc = -11513; sl@0: sl@0: sl@0: #endif // __EZLIBERRORCODES_H__