mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Expose zlib constants for backwards compat
This commit is contained in:
parent
53e63823f5
commit
91112baa26
@ -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;
|
||||
|
@ -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)
|
||||
|
10
compat/zip.h
10
compat/zip.h
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user