From 273c19334b4230deefef4c1b3fc311c497d5d660 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 22 Dec 2003 13:09:15 +0000 Subject: export these symbols for use by SPL as a shared extension --- Zend/zend_API.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Zend/zend_API.c') diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 00ed8abb2e..196399dc65 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1189,7 +1189,7 @@ ZEND_API int zend_startup_module(zend_module_entry *module) /* registers all functions in *library_functions in the function hash */ -int zend_register_functions(zend_class_entry *scope, zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) +ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entry *functions, HashTable *function_table, int type TSRMLS_DC) { zend_function_entry *ptr = functions; zend_function function, *reg_function; @@ -1311,7 +1311,7 @@ int zend_register_functions(zend_class_entry *scope, zend_function_entry *functi /* count=-1 means erase all functions, otherwise, * erase the first count functions */ -void zend_unregister_functions(zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) +ZEND_API void zend_unregister_functions(zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) { zend_function_entry *ptr = functions; int i=0; -- cgit v1.2.1