summaryrefslogtreecommitdiff
path: root/Zend/zend.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-15 20:15:32 +0000
committerZeev Suraski <zeev@php.net>1999-12-15 20:15:32 +0000
commitced9cee10cf943568b487dc1204f95290b19de80 (patch)
tree710e255fb51ac24b17a0d34ec0ee2fafcb858474 /Zend/zend.h
parent3c700f92601b6d579a675374dc06178369747f53 (diff)
downloadphp-git-ced9cee10cf943568b487dc1204f95290b19de80.tar.gz
- Implement return by reference:
- In function declaration instead of the return statement - In the assignment phase - Implement ability to turn off support for call-time pass by reference
Diffstat (limited to 'Zend/zend.h')
-rw-r--r--Zend/zend.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 2129970352..0ef98ee46a 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -187,8 +187,9 @@ typedef struct _zend_utility_functions {
typedef struct _zend_utility_values {
- unsigned char short_tags;
- unsigned char asp_tags;
+ zend_bool short_tags;
+ zend_bool asp_tags;
+ zend_bool allow_call_time_pass_reference;
char *import_use_extension;
uint import_use_extension_length;
} zend_utility_values;