xref: /PHP-5.5/ext/zip/lib/zipconf.h (revision bde0e8c2)
1 #ifndef _HAD_ZIPCONF_H
2 #define _HAD_ZIPCONF_H
3 
4 /*
5    zipconf.h -- platform specific include file
6 
7    This file was generated automatically by ./make_zipconf.sh
8    based on ../config.h.
9  */
10 
11 #define LIBZIP_VERSION "0.10.1"
12 #define LIBZIP_VERSION_MAJOR 0
13 #define LIBZIP_VERSION_MINOR 10
14 #define LIBZIP_VERSION_MICRO 0
15 
16 #ifdef PHP_WIN32
17 #include <win32/php_stdint.h>
18 #else
19 #include <inttypes.h>
20 #endif
21 
22 typedef int8_t zip_int8_t;
23 #define ZIP_INT8_MIN INT8_MIN
24 #define ZIP_INT8_MAX INT8_MAX
25 
26 typedef uint8_t zip_uint8_t;
27 #define ZIP_UINT8_MAX UINT8_MAX
28 
29 typedef int16_t zip_int16_t;
30 #define ZIP_INT16_MIN INT16_MIN
31 #define ZIP_INT16_MAX INT16_MAX
32 
33 typedef uint16_t zip_uint16_t;
34 #define ZIP_UINT16_MAX UINT16_MAX
35 
36 typedef int32_t zip_int32_t;
37 #define ZIP_INT32_MIN INT32_MIN
38 #define ZIP_INT32_MAX INT32_MAX
39 
40 typedef uint32_t zip_uint32_t;
41 #define ZIP_UINT32_MAX UINT32_MAX
42 
43 typedef int64_t zip_int64_t;
44 #define ZIP_INT64_MIN INT64_MIN
45 #define ZIP_INT64_MAX INT64_MAX
46 
47 typedef uint64_t zip_uint64_t;
48 #define ZIP_UINT64_MAX UINT64_MAX
49 
50 
51 #endif /* zipconf.h */
52