diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-05 15:11:24 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-05 15:11:24 +0000 |
commit | 9f51f154aa5e40baabd3b605675edef5772778a8 (patch) | |
tree | 913caedad44228494f4fd13c7ea9b337d499660f /Zend/zend.h | |
parent | 5ac1ee403bed25e0a0b6c515991692df07c41ddb (diff) | |
download | php-git-9f51f154aa5e40baabd3b605675edef5772778a8.tar.gz |
- Stop passing list/plist to internal functions
- Add a typedef for the pCopyConstructor function pointer
- Minor hacks
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 272d9f19fe..d1035857f8 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -117,8 +117,8 @@ typedef unsigned char zend_bool; #include "zend_hash.h" #include "zend_llist.h" -#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, HashTable *list, HashTable *plist, zval *this_ptr, int return_value_used -#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, list, plist, this_ptr, return_value_used +#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval *this_ptr, int return_value_used +#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, this_ptr, return_value_used /* * zval |