From e8d48dd7ae085be14c17b57cbd0000e01e135c77 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 21 Mar 2001 05:45:40 +0000 Subject: - added EntityReference and Notation class - fixed handling of PI nodes - implemented more class functions --- ext/domxml/php_domxml.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/domxml/php_domxml.h') 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); -- cgit v1.2.1