Update contrib.
1 // Copyright (c) 2007-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.
18 // This header guard define is used subsequently in zutil.h to allow standard libarary functions
19 // (in stdlib.h and string.h) to be included for libz.dll and excluded for libzcore.dll.
23 #if (defined(__TOOLS2__) || defined(__TOOLS__))
32 #ifdef SYMBIAN_EZLIB_DEVICE
43 * Flushes all pending output if necessary, closes the compressed file
44 * and deallocates all the (de)compression state.
46 int gzclose_r (gzFile file);
50 * Clears the error and end-of-file flags for file.This is analogous to the
51 * clearerr() function in stdio.
53 void gzclearerr_r (gzFile file);
57 * gzdopen() associates a gzFile with the file descriptor fd. File
58 * descriptors are obtained from calls like open, dup, creat, pipe or
59 * fileno (in the file has been previously opened with fopen).
60 * The mode parameter is as in gzopen.
62 gzFile gzdopen_r (int fd, const char *mode);
66 * Returns 1 if file is being read directly without decompression, otherwise
69 int gzdirect_r (gzFile file);
73 * Returns 1 when EOF has previously been detected reading the given
74 * input stream, otherwise zero.
76 int gzeof_r (gzFile file);
80 * Returns the error message for the last error which occurred on the
81 * given compressed file. errnum is set to zlib error number. If an
82 * error occurred in the file system and not in the compression library,
83 * errnum is set to Z_ERRNO and the application may consult errno
84 * to get the exact error code.
86 const char* gzerror_r (gzFile file, int *errnum);
90 * Flushes all pending output into the compressed file.gzflush should
91 * be called only when strictly necessary because it can degrade compression.
93 int gzflush_r (gzFile file, int flush);
97 * Reads one byte from the compressed file. gzgetc returns this byte
98 * or -1 in case of end of file or error.
100 int gzgetc_r (gzFile file);
104 * Reads bytes from the compressed file until len-1 characters are read, or
105 * a newline character is read and transferred to buf, or an end-of-file
106 * condition is encountered. The string is then terminated with a null
109 char* gzgets_r (gzFile file, char *buf, int len);
112 * Opens a gzip (.gz) file for reading or writing. The mode parameter
113 * is as in fopen ("rb" or "wb") but can also include a compression level
114 * ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
115 * Huffman only compression as in "wb1h", or 'R' for run-length encoding
118 gzFile gzopen_r (const char *path, const char *mode);
122 * Converts, formats, and writes the args to the compressed file under
123 * control of the format string, as in fprintf. gzprintf returns the number of
124 * uncompressed bytes actually written (0 in case of error).
126 int gzprintf_r (gzFile file, const char *format, va_list va);
130 * Writes c, converted to an unsigned char, into the compressed file.
131 * gzputc returns the value that was written, or -1 in case of error.
133 int gzputc_r (gzFile file, int c);
137 * Writes the given null-terminated string to the compressed file, excluding
138 * the terminating null character. gzputs returns the number of characters
139 * written, or -1 in case of error.
141 int gzputs_r (gzFile file, const char *s);
145 * Reads the given number of uncompressed bytes from the compressed file.
146 * gzread returns the number of uncompressed bytes actually read (0 for
147 * end of file, -1 for error).
149 int gzread_r (gzFile file, voidp buf, unsigned len);
153 * Rewinds the given file. This function is supported only for reading.
154 * gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
157 int gzrewind_r (gzFile file);
161 * Sets the starting position for the next gzread or gzwrite on the
162 * given compressed file. If the file is opened for writing, only
163 * forward seeks are supported.
165 z_off_t gzseek_r (gzFile file, z_off_t offset, int whence);
169 * Dynamically update the compression level or strategy. See the description
170 * of deflateInit2 for the meaning of these parameters.
172 int gzsetparams_r (gzFile file, int level, int strategy);
176 * Returns the starting position for the next gzread or gzwrite on the
177 * given compressed file. This position represents a number of bytes in the
178 * uncompressed data stream.
180 z_off_t gztell_r (gzFile file);
184 * Push one character back onto the stream to be read again later.
185 * Only one character of push-back is allowed.
187 int gzungetc_r (int c, gzFile file);
191 * Writes the given number of uncompressed bytes into the compressed file.
192 * gzwrite returns the number of uncompressed bytes actually written
193 * (0 in case of error).
195 int gzwrite_r (gzFile file, voidpc buf, unsigned len);
202 #endif /* LIBZGZIO_H */