os/ossrv/compressionlibs/ziplib/inc/ezliberrorcodes.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/compressionlibs/ziplib/inc/ezliberrorcodes.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,64 @@
     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 +// All the error codes returned by the Symbian OS wrapper over the zlib 
    1.18 +// library in EZLib component are defined here.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 + @publishedAll 
    1.25 + @released
    1.26 +*/
    1.27 +
    1.28 +#ifndef __EZLIBERRORCODES_H__
    1.29 +#define __EZLIBERRORCODES_H__
    1.30 +
    1.31 +#include <e32def.h>
    1.32 +
    1.33 +//
    1.34 +// Error codes returned from the CEZDecompressor and CEZCompressor classes 
    1.35 +//
    1.36 +/** The Z_STREAM_ERROR zlib error code has been returned by an internal method 
    1.37 +	due to a stream error. */
    1.38 +const TInt KEZlibErrStream				= -11501;
    1.39 +/** The Z_DATA_ERROR zlib error code has been returned by an internal method 
    1.40 +	due to a data error. */
    1.41 +const TInt KEZlibErrData				= -11502;
    1.42 +/** The Z_BUF_ERROR zlib error code has been returned by an internal method 
    1.43 +	due to a buffer error. */
    1.44 +const TInt KEZlibErrBuf					= -11503;
    1.45 +/** The Z_VERSION_ERROR zlib error code has been returned by an internal method 
    1.46 +	due to a version error. */
    1.47 +const TInt KEZlibErrVersion				= -11504;
    1.48 +/** Unexpected ezlib error. */
    1.49 +const TInt KEZlibErrUnexpected			= -11505;
    1.50 +/** Returned by ::DeflateL() if deflation has already occured.  */
    1.51 +const TInt KEZlibErrDeflateTerminated	= -11506;
    1.52 +/** Returned by ::InflateL() if inflation has already occured. */
    1.53 +const TInt KEZlibErrInflateTerminated	= -11507;
    1.54 +/** An error has occured inflating the dictionary. */
    1.55 +const TInt KEZlibErrInflateDictionary	= -11508;
    1.56 +
    1.57 +//
    1.58 +// Error codes returned from GZip classes (eg EZGZipFile and CEZGZipToFile)
    1.59 +//
    1.60 +const TInt KEZlibErrNotGZipFile			= -11509;
    1.61 +const TInt KEZlibErrInvalidCompression	= -11510;
    1.62 +const TInt KEZlibErrBadGZipHeader		= -11511;
    1.63 +const TInt KEZlibErrBadGZipTrailer		= -11512;
    1.64 +const TInt KEZlibErrBadGZipCrc			= -11513;
    1.65 +
    1.66 +
    1.67 +#endif	// __EZLIBERRORCODES_H__