summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorUwe Steinmann <steinm@php.net>2000-08-07 11:55:48 +0000
committerUwe Steinmann <steinm@php.net>2000-08-07 11:55:48 +0000
commitedcbd1862e349ecd00fc84cbc5fbd8a2cad546c2 (patch)
treeb189cb81e2cb2a4f8db1a0ee3315904622e6c374 /ext/domxml/php_domxml.c
parent83341c39da7ed945164ce873fda0eed68fc79dc0 (diff)
downloadphp-git-edcbd1862e349ecd00fc84cbc5fbd8a2cad546c2.tar.gz
- got rid of php_ prefix in Modulename and some structs
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 6ceb696fde..7ddd1e1c63 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -41,7 +41,7 @@ static zend_class_entry *domxmltestnode_class_entry_ptr;
static int node_attributes(zval **attributes, xmlNode *nodep);
static int node_children(zval **children, xmlNode *nodep);
-static zend_function_entry php_domxml_functions[] = {
+static zend_function_entry domxml_functions[] = {
PHP_FE(xmldoc, NULL)
PHP_FE(xmldocfile, NULL)
PHP_FE(xmltree, NULL)
@@ -103,12 +103,12 @@ static zend_function_entry php_domxmlns_class_functions[] = {
void domxmltestnode_class_startup();
#endif
-zend_module_entry php_domxml_module_entry = {
- "domxml", php_domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES
+zend_module_entry domxml_module_entry = {
+ "domxml", domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_DOMXML
-ZEND_GET_MODULE(php_domxml)
+ZEND_GET_MODULE(domxml)
#endif
void _free_node(xmlNode *tmp) {