diff options
author | Marcus Boerger <helly@php.net> | 2004-06-10 12:32:09 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-06-10 12:32:09 +0000 |
commit | c756609658e7df972f02bd05bb4657f01c89b9dd (patch) | |
tree | 81d1232cf9d97831c39759ca54abad31348dfeac | |
parent | eb0cb6f6ed15c45f817bd890d253ecb8ba85b7dd (diff) | |
download | php-git-c756609658e7df972f02bd05bb4657f01c89b9dd.tar.gz |
Add missing declaration
-rw-r--r-- | Zend/zend_API.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 11be8f70af..353b9385a4 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -167,6 +167,7 @@ ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC); ZEND_API void zend_unregister_functions(zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC); ZEND_API int zend_register_module(zend_module_entry *module_entry); +ZEND_API int zend_register_module_ex(zend_module_entry *module TSRMLS_DC); ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry TSRMLS_DC); ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce, char *parent_name TSRMLS_DC); |