summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-04-19 18:57:14 +0000
committerAndi Gutmans <andi@php.net>1999-04-19 18:57:14 +0000
commit9deab4118d467149ac56d6b57a2b973aeb4c94a8 (patch)
treec04b35c95b2ba1149fb369130c671c26427e81a5 /Zend/zend_API.h
parenta2d8219e2c4040a610eb2dc8934db7da532b3c61 (diff)
downloadphp-git-9deab4118d467149ac56d6b57a2b973aeb4c94a8.tar.gz
Add a couple of ZEND_API's
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 100b5750ba..ffed84be10 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -30,18 +30,17 @@
int zend_next_free_module(void);
-int getParameters(int ht, int param_count,...);
-int getParametersArray(int ht, int param_count, zval **argument_array);
-int getParametersEx(int param_count,...);
-int getParametersArrayEx(int param_count, zval ***argument_array);
+ZEND_API int getParameters(int ht, int param_count,...);
+ZEND_API int getParametersArray(int ht, int param_count, zval **argument_array);
+ZEND_API int getParametersEx(int param_count,...);
+ZEND_API int getParametersArrayEx(int param_count, zval ***argument_array);
-int getThis(zval **this);
+ZEND_API int getThis(zval **this);
+ZEND_API int ParameterPassedByReference(int ht, uint n);
-
-int ParameterPassedByReference(int ht, uint n);
int register_functions(zend_function_entry *functions);
void unregister_functions(zend_function_entry *functions, int count);
-int register_module(zend_module_entry *module_entry);
+ZEND_API int register_module(zend_module_entry *module_entry);
zend_class_entry *register_internal_class(zend_class_entry *class_entry);
ZEND_API void wrong_param_count(void);