diff options
author | Andi Gutmans <andi@php.net> | 2002-06-16 18:25:05 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-06-16 18:25:05 +0000 |
commit | 690c85b406559a823063c34fc0fc85bbe6a109dc (patch) | |
tree | 2abaae534c77a0b2d44bd3721b5278192e779c56 /Zend/zend_execute.h | |
parent | 7672dbcdcfa1f319d8429152e28f51066efbbda3 (diff) | |
download | php-git-690c85b406559a823063c34fc0fc85bbe6a109dc.tar.gz |
- Fix bug in class constants
- Start centralizing main class lookups. This will help implement
- __autload()
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r-- | Zend/zend_execute.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 686f1a6640..e578842231 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -64,7 +64,7 @@ static inline void safe_free_zval_ptr(zval *p) FREE_ZVAL(p); } } - +ZEND_API int zend_lookup_class(char *name, int name_length, zend_class_entry ***ce TSRMLS_DC); ZEND_API int zend_eval_string(char *str, zval *retval_ptr, char *string_name TSRMLS_DC); static inline int i_zend_is_true(zval *op) |