os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZlibErrorCodes.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// EZlibErrorCodes.h
sl@0
    15
// All the error codes returned by the Symbian OS wrapper over the zlib 
sl@0
    16
// library in EZLib component are defined here.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
 @publishedAll 
sl@0
    23
 @released
sl@0
    24
*/
sl@0
    25
sl@0
    26
#ifndef __EZLIB_ERRORCODES_H__
sl@0
    27
#define __EZLIB_ERRORCODES_H__
sl@0
    28
sl@0
    29
namespace TOLDEZLIB
sl@0
    30
{
sl@0
    31
	
sl@0
    32
//
sl@0
    33
// Error codes returned from the CEZDecompressor and CEZCompressor classes 
sl@0
    34
//
sl@0
    35
/** The Z_STREAM_ERROR zlib error code has been returned by an internal method 
sl@0
    36
	due to a stream error. */
sl@0
    37
const TInt KEZlibErrStream				= -11501;
sl@0
    38
/** The Z_DATA_ERROR zlib error code has been returned by an internal method 
sl@0
    39
	due to a data error. */
sl@0
    40
const TInt KEZlibErrData				= -11502;
sl@0
    41
/** The Z_BUF_ERROR zlib error code has been returned by an internal method 
sl@0
    42
	due to a buffer error. */
sl@0
    43
const TInt KEZlibErrBuf					= -11503;
sl@0
    44
/** The Z_VERSION_ERROR zlib error code has been returned by an internal method 
sl@0
    45
	due to a version error. */
sl@0
    46
const TInt KEZlibErrVersion				= -11504;
sl@0
    47
/** Unexpected ezlib error. */
sl@0
    48
const TInt KEZlibErrUnexpected			= -11505;
sl@0
    49
/** Returned by ::DeflateL() if deflation has already occured.  */
sl@0
    50
const TInt KEZlibErrDeflateTerminated	= -11506;
sl@0
    51
/** Returned by ::InflateL() if inflation has already occured. */
sl@0
    52
const TInt KEZlibErrInflateTerminated	= -11507;
sl@0
    53
/** An error has occured inflating the dictionary. */
sl@0
    54
const TInt KEZlibErrInflateDictionary	= -11508;
sl@0
    55
sl@0
    56
//
sl@0
    57
// Error codes returned from GZip classes (eg EZGZipFile and CEZGZipToFile)
sl@0
    58
//
sl@0
    59
const TInt KEZlibErrNotGZipFile			= -11509;
sl@0
    60
const TInt KEZlibErrInvalidCompression	= -11510;
sl@0
    61
const TInt KEZlibErrBadGZipHeader		= -11511;
sl@0
    62
const TInt KEZlibErrBadGZipTrailer		= -11512;
sl@0
    63
const TInt KEZlibErrBadGZipCrc			= -11513;
sl@0
    64
sl@0
    65
}//namespace TOLDEZLIB
sl@0
    66
#endif	// __EZLIBERRORCODES_H__