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 |
// All the error codes returned by the Symbian OS wrapper over the zlib
|
sl@0
|
15 |
// library in EZLib component are defined here.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@publishedAll
|
sl@0
|
22 |
@released
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef __EZLIBERRORCODES_H__
|
sl@0
|
26 |
#define __EZLIBERRORCODES_H__
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <e32def.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
//
|
sl@0
|
31 |
// Error codes returned from the CEZDecompressor and CEZCompressor classes
|
sl@0
|
32 |
//
|
sl@0
|
33 |
/** The Z_STREAM_ERROR zlib error code has been returned by an internal method
|
sl@0
|
34 |
due to a stream error. */
|
sl@0
|
35 |
const TInt KEZlibErrStream = -11501;
|
sl@0
|
36 |
/** The Z_DATA_ERROR zlib error code has been returned by an internal method
|
sl@0
|
37 |
due to a data error. */
|
sl@0
|
38 |
const TInt KEZlibErrData = -11502;
|
sl@0
|
39 |
/** The Z_BUF_ERROR zlib error code has been returned by an internal method
|
sl@0
|
40 |
due to a buffer error. */
|
sl@0
|
41 |
const TInt KEZlibErrBuf = -11503;
|
sl@0
|
42 |
/** The Z_VERSION_ERROR zlib error code has been returned by an internal method
|
sl@0
|
43 |
due to a version error. */
|
sl@0
|
44 |
const TInt KEZlibErrVersion = -11504;
|
sl@0
|
45 |
/** Unexpected ezlib error. */
|
sl@0
|
46 |
const TInt KEZlibErrUnexpected = -11505;
|
sl@0
|
47 |
/** Returned by ::DeflateL() if deflation has already occured. */
|
sl@0
|
48 |
const TInt KEZlibErrDeflateTerminated = -11506;
|
sl@0
|
49 |
/** Returned by ::InflateL() if inflation has already occured. */
|
sl@0
|
50 |
const TInt KEZlibErrInflateTerminated = -11507;
|
sl@0
|
51 |
/** An error has occured inflating the dictionary. */
|
sl@0
|
52 |
const TInt KEZlibErrInflateDictionary = -11508;
|
sl@0
|
53 |
|
sl@0
|
54 |
//
|
sl@0
|
55 |
// Error codes returned from GZip classes (eg EZGZipFile and CEZGZipToFile)
|
sl@0
|
56 |
//
|
sl@0
|
57 |
const TInt KEZlibErrNotGZipFile = -11509;
|
sl@0
|
58 |
const TInt KEZlibErrInvalidCompression = -11510;
|
sl@0
|
59 |
const TInt KEZlibErrBadGZipHeader = -11511;
|
sl@0
|
60 |
const TInt KEZlibErrBadGZipTrailer = -11512;
|
sl@0
|
61 |
const TInt KEZlibErrBadGZipCrc = -11513;
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
#endif // __EZLIBERRORCODES_H__
|