1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZlibErrorCodes.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,66 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// EZlibErrorCodes.h
1.18 +// All the error codes returned by the Symbian OS wrapper over the zlib
1.19 +// library in EZLib component are defined here.
1.20 +//
1.21 +//
1.22 +
1.23 +/**
1.24 + @file
1.25 + @publishedAll
1.26 + @released
1.27 +*/
1.28 +
1.29 +#ifndef __EZLIB_ERRORCODES_H__
1.30 +#define __EZLIB_ERRORCODES_H__
1.31 +
1.32 +namespace TOLDEZLIB
1.33 +{
1.34 +
1.35 +//
1.36 +// Error codes returned from the CEZDecompressor and CEZCompressor classes
1.37 +//
1.38 +/** The Z_STREAM_ERROR zlib error code has been returned by an internal method
1.39 + due to a stream error. */
1.40 +const TInt KEZlibErrStream = -11501;
1.41 +/** The Z_DATA_ERROR zlib error code has been returned by an internal method
1.42 + due to a data error. */
1.43 +const TInt KEZlibErrData = -11502;
1.44 +/** The Z_BUF_ERROR zlib error code has been returned by an internal method
1.45 + due to a buffer error. */
1.46 +const TInt KEZlibErrBuf = -11503;
1.47 +/** The Z_VERSION_ERROR zlib error code has been returned by an internal method
1.48 + due to a version error. */
1.49 +const TInt KEZlibErrVersion = -11504;
1.50 +/** Unexpected ezlib error. */
1.51 +const TInt KEZlibErrUnexpected = -11505;
1.52 +/** Returned by ::DeflateL() if deflation has already occured. */
1.53 +const TInt KEZlibErrDeflateTerminated = -11506;
1.54 +/** Returned by ::InflateL() if inflation has already occured. */
1.55 +const TInt KEZlibErrInflateTerminated = -11507;
1.56 +/** An error has occured inflating the dictionary. */
1.57 +const TInt KEZlibErrInflateDictionary = -11508;
1.58 +
1.59 +//
1.60 +// Error codes returned from GZip classes (eg EZGZipFile and CEZGZipToFile)
1.61 +//
1.62 +const TInt KEZlibErrNotGZipFile = -11509;
1.63 +const TInt KEZlibErrInvalidCompression = -11510;
1.64 +const TInt KEZlibErrBadGZipHeader = -11511;
1.65 +const TInt KEZlibErrBadGZipTrailer = -11512;
1.66 +const TInt KEZlibErrBadGZipCrc = -11513;
1.67 +
1.68 +}//namespace TOLDEZLIB
1.69 +#endif // __EZLIBERRORCODES_H__