Tag
Hash :
14fff064
Author :
Date :
1999-06-22T21:49:07
Big changes, seems that 1.2.0 wasn't commited, here is 1.3.0, Daniel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
* xmlIO.h : interface for the I/O interfaces used by the parser
*
* See Copyright for the status of this software.
*
* Daniel.Veillard@w3.org
*/
#ifndef __XML_IO_H__
#define __XML_IO_H__
#include <stdio.h>
#include "tree.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct xmlParserInputBuffer {
/* Inputs */
FILE *file; /* Input on file handler */
int fd; /* Input on a file descriptor */
/**********
#ifdef HAVE_ZLIB_H
gzFile gzfile; Input on a compressed stream
#endif
*/
xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 */
} xmlParserInputBuffer;
typedef xmlParserInputBuffer *xmlParserInputBufferPtr;
#ifdef __cplusplus
}
#endif
#endif /* __XML_IO_H__ */