diff options
| author | Dmitry Stogov <dmitry@php.net> | 2005-06-17 09:36:26 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2005-06-17 09:36:26 +0000 |
| commit | c0c7a9f0101f5488cbf861390f5a89feaebcc94a (patch) | |
| tree | 05fb8ff6f7b18688b4f1b7f9279f1645d24f8938 /Zend/zend_API.h | |
| parent | 61b2fcc3ce43135f024569dddf176ff08533cd19 (diff) | |
| download | php-git-c0c7a9f0101f5488cbf861390f5a89feaebcc94a.tar.gz | |
Improved PHP extension loading mechanism with support for module dependencies and conflicts.
Diffstat (limited to 'Zend/zend_API.h')
| -rw-r--r-- | Zend/zend_API.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 06a29246b6..ee6b6d3bf5 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -173,7 +173,10 @@ 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_internal_module(zend_module_entry *module_entry TSRMLS_DC); ZEND_API int zend_register_module_ex(zend_module_entry *module TSRMLS_DC); +ZEND_API int zend_startup_module(zend_module_entry *module TSRMLS_DC); +ZEND_API int zend_startup_modules(TSRMLS_D); ZEND_API void zend_check_magic_method_implementation(zend_class_entry *ce, zend_function *fptr, int error_type TSRMLS_DC); ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry TSRMLS_DC); @@ -228,8 +231,6 @@ ZEND_API zend_class_entry *zend_get_class_entry(zval *zobject TSRMLS_DC); #define DLEXPORT #endif -ZEND_API int zend_startup_module(zend_module_entry *module); - #define array_init(arg) _array_init((arg) ZEND_FILE_LINE_CC) #define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC TSRMLS_CC) #define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC TSRMLS_CC) |
