summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-04-12 18:29:09 +0000
committerZeev Suraski <zeev@php.net>1999-04-12 18:29:09 +0000
commit39a7f4c306675d3a03ff56f0a8c7f5e2183ab09a (patch)
treef91348978d003d8e668279dbab8bba7646965902 /Zend/zend_API.h
parentb06c5731fc2ac9ee11600096061e67b68a5b713e (diff)
downloadphp-git-39a7f4c306675d3a03ff56f0a8c7f5e2183ab09a.tar.gz
This patch is a go. Not fully optimized yet, but working properly.
Prepatch tagged as BEFORE_STACK_PATCH.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 2c95d0a41b..b2d6a4c81e 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -23,10 +23,10 @@
int zend_next_free_module(void);
-int getParameters(HashTable *ht, int param_count,...);
-int getParametersArray(HashTable *ht, int param_count, zval **argument_array);
+int getParameters(int ht, int param_count,...);
+int getParametersArray(int ht, int param_count, zval **argument_array);
int getThis(zval **this);
-int ParameterPassedByReference(HashTable *ht, uint n);
+int ParameterPassedByReference(int ht, uint n);
int register_functions(function_entry *functions);
void unregister_functions(function_entry *functions, int count);
int register_module(zend_module_entry *module_entry);
@@ -36,7 +36,7 @@ ZEND_API void wrong_param_count(void);
#define WRONG_PARAM_COUNT { wrong_param_count(); return; }
#define WRONG_PARAM_COUNT_WITH_RETVAL(ret) { wrong_param_count(); return ret; }
-#define ARG_COUNT(ht) (ht->nNextFreeElement)
+#define ARG_COUNT(ht) (ht)
#define BYREF_NONE 0
#define BYREF_FORCE 1