diff options
author | Rob Richards <rrichards@php.net> | 2003-12-09 21:55:02 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2003-12-09 21:55:02 +0000 |
commit | 1f33239c919006d7b927b80d6fff1836279656b4 (patch) | |
tree | 7209b524ad59d4569dd7af26bb150b0560784104 /ext/libxml/php_libxml.h | |
parent | 85ce95847f99c03c22816b920a373ebc48e3ab1b (diff) | |
download | php-git-1f33239c919006d7b927b80d6fff1836279656b4.tar.gz |
buffer error messages until newline is hit
Diffstat (limited to 'ext/libxml/php_libxml.h')
-rw-r--r-- | ext/libxml/php_libxml.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/libxml/php_libxml.h b/ext/libxml/php_libxml.h index 6ed39f88ef..11a63609e9 100644 --- a/ext/libxml/php_libxml.h +++ b/ext/libxml/php_libxml.h @@ -37,10 +37,12 @@ extern zend_module_entry libxml_module_entry; #define PHP_LIBXML_API #endif +#include "ext/standard/php_smart_str.h" #include <libxml/tree.h> typedef struct { zval *stream_context; + smart_str *error_buffer; } php_libxml_globals; typedef struct _php_libxml_ref_obj { |