diff options
author | Uwe Steinmann <steinm@php.net> | 2001-03-21 05:45:40 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2001-03-21 05:45:40 +0000 |
commit | e8d48dd7ae085be14c17b57cbd0000e01e135c77 (patch) | |
tree | 372909ffcb216abdf3b40205255f1bddbc85364b /ext/domxml/php_domxml.h | |
parent | d4952b482e1c54fd4f3e5c246a5305059c7aea40 (diff) | |
download | php-git-e8d48dd7ae085be14c17b57cbd0000e01e135c77.tar.gz |
- added EntityReference and Notation class
- fixed handling of PI nodes
- implemented more class functions
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 6c4bb0a271..874b525711 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -51,6 +51,7 @@ PHP_FUNCTION(domxml_doc_create_text_node); PHP_FUNCTION(domxml_doc_create_comment); PHP_FUNCTION(domxml_doc_create_processing_instruction); PHP_FUNCTION(domxml_doc_create_attribute); +PHP_FUNCTION(domxml_doc_imported_node); PHP_FUNCTION(domxml_add_root); PHP_FUNCTION(domxml_intdtd); PHP_FUNCTION(domxml_dumpmem); @@ -63,6 +64,10 @@ PHP_FUNCTION(domxml_doctype_public_id); PHP_FUNCTION(domxml_doctype_system_id); PHP_FUNCTION(domxml_doctype_internal_subset); +/* Class Notation methods */ +PHP_FUNCTION(domxml_notation_public_id); +PHP_FUNCTION(domxml_notation_system_id); + /* Class Node methods */ PHP_FUNCTION(domxml_node_attributes); PHP_FUNCTION(domxml_node_children); |