46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
|
#ifndef _HAD_ZIPCONF_H
|
||
|
#define _HAD_ZIPCONF_H
|
||
|
|
||
|
/*
|
||
|
zipconf.h -- platform specific include file
|
||
|
|
||
|
This file was generated automatically by CMake
|
||
|
based on ../cmake-zipconf.h.in.
|
||
|
*/
|
||
|
|
||
|
#cmakedefine LIBZIP_VERSION "@PACKAGE_VERSION@"
|
||
|
#cmakedefine LIBZIP_VERSION_MAJOR @PACKAGE_VERSION_MAJOR@
|
||
|
#cmakedefine LIBZIP_VERSION_MINOR @PACKAGE_VERSION_MINOR@
|
||
|
#cmakedefine LIBZIP_VERSION_MICRO @PACKAGE_VERSION_MICRO@
|
||
|
|
||
|
#cmakedefine ZIP_STATIC
|
||
|
|
||
|
${LIBZIP_TYPES_INCLUDE}
|
||
|
|
||
|
typedef ${ZIP_INT8_T} zip_int8_t;
|
||
|
typedef ${ZIP_UINT8_T} zip_uint8_t;
|
||
|
typedef ${ZIP_INT16_T} zip_int16_t;
|
||
|
typedef ${ZIP_UINT16_T} zip_uint16_t;
|
||
|
typedef ${ZIP_INT32_T} zip_int32_t;
|
||
|
typedef ${ZIP_UINT32_T} zip_uint32_t;
|
||
|
typedef ${ZIP_INT64_T} zip_int64_t;
|
||
|
typedef ${ZIP_UINT64_T} zip_uint64_t;
|
||
|
|
||
|
#define ZIP_INT8_MIN (-ZIP_INT8_MAX-1)
|
||
|
#define ZIP_INT8_MAX 0x7f
|
||
|
#define ZIP_UINT8_MAX 0xff
|
||
|
|
||
|
#define ZIP_INT16_MIN (-ZIP_INT16_MAX-1)
|
||
|
#define ZIP_INT16_MAX 0x7fff
|
||
|
#define ZIP_UINT16_MAX 0xffff
|
||
|
|
||
|
#define ZIP_INT32_MIN (-ZIP_INT32_MAX-1L)
|
||
|
#define ZIP_INT32_MAX 0x7fffffffL
|
||
|
#define ZIP_UINT32_MAX 0xffffffffLU
|
||
|
|
||
|
#define ZIP_INT64_MIN (-ZIP_INT64_MAX-1LL)
|
||
|
#define ZIP_INT64_MAX 0x7fffffffffffffffLL
|
||
|
#define ZIP_UINT64_MAX 0xffffffffffffffffULL
|
||
|
|
||
|
#endif /* zipconf.h */
|