1*7c568831SAndroid Build Coastguard Worker /** 2*7c568831SAndroid Build Coastguard Worker * xzlib.h: header for the front end for the transparent support of lzma 3*7c568831SAndroid Build Coastguard Worker * compression at the I/O layer 4*7c568831SAndroid Build Coastguard Worker * 5*7c568831SAndroid Build Coastguard Worker * See Copyright for the status of this software. 6*7c568831SAndroid Build Coastguard Worker * 7*7c568831SAndroid Build Coastguard Worker * Anders F Bjorklund <[email protected]> 8*7c568831SAndroid Build Coastguard Worker */ 9*7c568831SAndroid Build Coastguard Worker 10*7c568831SAndroid Build Coastguard Worker #ifndef LIBXML2_XZLIB_H 11*7c568831SAndroid Build Coastguard Worker #define LIBXML2_XZLIB_H 12*7c568831SAndroid Build Coastguard Worker 13*7c568831SAndroid Build Coastguard Worker #include <libxml/xmlversion.h> 14*7c568831SAndroid Build Coastguard Worker 15*7c568831SAndroid Build Coastguard Worker #ifdef LIBXML_LZMA_ENABLED 16*7c568831SAndroid Build Coastguard Worker 17*7c568831SAndroid Build Coastguard Worker typedef void *xzFile; /* opaque lzma file descriptor */ 18*7c568831SAndroid Build Coastguard Worker 19*7c568831SAndroid Build Coastguard Worker XML_HIDDEN xzFile 20*7c568831SAndroid Build Coastguard Worker __libxml2_xzopen(const char *path, const char *mode); 21*7c568831SAndroid Build Coastguard Worker XML_HIDDEN xzFile 22*7c568831SAndroid Build Coastguard Worker __libxml2_xzdopen(const char *path, int fd, const char *mode); 23*7c568831SAndroid Build Coastguard Worker XML_HIDDEN int 24*7c568831SAndroid Build Coastguard Worker __libxml2_xzread(xzFile file, void *buf, unsigned len); 25*7c568831SAndroid Build Coastguard Worker XML_HIDDEN int 26*7c568831SAndroid Build Coastguard Worker __libxml2_xzclose(xzFile file); 27*7c568831SAndroid Build Coastguard Worker XML_HIDDEN int 28*7c568831SAndroid Build Coastguard Worker __libxml2_xzcompressed(xzFile f); 29*7c568831SAndroid Build Coastguard Worker 30*7c568831SAndroid Build Coastguard Worker #endif /* LIBXML_LZMA_ENABLED */ 31*7c568831SAndroid Build Coastguard Worker 32*7c568831SAndroid Build Coastguard Worker #endif /* LIBXML2_XZLIB_H */ 33