Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // Declaration for CEZStream class.
19 #ifndef __EZLIB_EZZSTREAM_H__
20 #define __EZLIB_EZZSTREAM_H__
24 #include "OldEZlibErrorCodes.h"
27 Represents a zip stream
34 class CEZZStream : public CBase
37 /** stream panic values */
40 EStreamError = -Z_STREAM_ERROR,
41 EDataError = -Z_DATA_ERROR,
42 EBufError = -Z_BUF_ERROR,
43 EVersionError = -Z_VERSION_ERROR,
47 IMPORT_C void SetInput(const TDesC8& aInputData);
48 IMPORT_C void SetOutput(TDes8& aOutputData);
50 IMPORT_C TPtrC8 OutputDescriptor() const;
51 IMPORT_C TInt TotalOut() const;
52 IMPORT_C TInt TotalIn() const;
53 IMPORT_C TInt32 Adler32() const;
54 IMPORT_C TInt AvailIn() const;
55 IMPORT_C TInt AvailOut() const;
57 IMPORT_C TInt Progress(TInt aTotalLength) const;
66 // This pointer is reset every time SetOutput is called. It maintains a pointer to the
67 // start of the output buffer which is being written to. We cannot use iStream.next_out,
68 // because zlib will modifify this during its deflate and inflate.
70 TUint8* iOutputPointer;
71 TInt iOutputBufferLength;
73 }// namespace TOLDEZLIB