Expose zlib constants for backwards compat

This commit is contained in:
Cœur 2024-11-01 12:06:30 +01:00 committed by Nathan Moinvaziri
parent 53e63823f5
commit 91112baa26
3 changed files with 8 additions and 23 deletions

View File

@ -5,7 +5,14 @@
#include <stdint.h>
#ifndef _ZLIB_H
//#include "zlib.h"
# include "zlib.h"
#endif
#ifndef Z_ERRNO
#define Z_ERRNO (-1)
#endif
#ifndef Z_DEFLATED
#define Z_DEFLATED (8)
#endif
typedef uint64_t ZPOS64_T;

View File

@ -38,18 +38,6 @@ typedef void *unzFile;
/***************************************************************************/
#ifndef Z_ERRNO
#define Z_ERRNO (-1)
#endif
#ifndef Z_DEFLATED
#define Z_DEFLATED (8)
#endif
#ifndef Z_BZIP2ED
#define Z_BZIP2ED (12)
#endif
/***************************************************************************/
#define UNZ_OK (0)
#define UNZ_END_OF_LIST_OF_FILE (-100)
#define UNZ_ERRNO (Z_ERRNO)

View File

@ -38,16 +38,6 @@ typedef void *zipFile;
/***************************************************************************/
#ifndef Z_ERRNO
#define Z_ERRNO (-1)
#endif
#ifndef Z_DEFLATED
#define Z_DEFLATED (8)
#endif
#ifndef Z_BZIP2ED
#define Z_BZIP2ED (12)
#endif
#define ZIP_OK (0)
#define ZIP_EOF (0)
#define ZIP_ERRNO (Z_ERRNO)