diff options
author | Marcus Boerger <helly@php.net> | 2006-03-05 16:12:24 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-03-05 16:12:24 +0000 |
commit | 35ce5db25e2701b62a3e26235b117471cbbbab5b (patch) | |
tree | b5baa26b6b3084edf22caf47ba9237f224cefda3 /Zend/zend_API.h | |
parent | a9080d38f49a16ed8bfe3d248b4c23243d93f7f7 (diff) | |
download | php-git-35ce5db25e2701b62a3e26235b117471cbbbab5b.tar.gz |
- Add missing function for completeness
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 837335fd22..280d313f0d 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -223,6 +223,7 @@ ZEND_API int zend_declare_property_string(zend_class_entry *ce, char *name, int ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, char *name, int name_length, char *value, int value_len, int access_type TSRMLS_DC); ZEND_API int zend_declare_class_constant(zend_class_entry *ce, char *name, size_t name_length, zval *value TSRMLS_DC); +ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, char *name, size_t name_length TSRMLS_DC); ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, char *name, size_t name_length, long value TSRMLS_DC); ZEND_API int zend_declare_class_constant_bool(zend_class_entry *ce, char *name, size_t name_length, zend_bool value TSRMLS_DC); ZEND_API int zend_declare_class_constant_double(zend_class_entry *ce, char *name, size_t name_length, double value TSRMLS_DC); |