diff options
author | Harald Radi <phanto@php.net> | 2002-04-23 18:06:54 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2002-04-23 18:06:54 +0000 |
commit | 51e797f1e36d1261c9bcd00fd21a72af21b5b507 (patch) | |
tree | cf6069e0c2f72a49b7d870f36a68700c507379a6 /Zend/zend_ts_hash.h | |
parent | fc851f342ac0cff05fcc520f275e175463865e33 (diff) | |
download | php-git-51e797f1e36d1261c9bcd00fd21a72af21b5b507.tar.gz |
some type cleanup work
Diffstat (limited to 'Zend/zend_ts_hash.h')
-rw-r--r-- | Zend/zend_ts_hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_ts_hash.h b/Zend/zend_ts_hash.h index abd8e032da..a9d3a23d29 100644 --- a/Zend/zend_ts_hash.h +++ b/Zend/zend_ts_hash.h @@ -33,8 +33,8 @@ typedef struct _zend_ts_hashtable { BEGIN_EXTERN_C() /* startup/shutdown */ -ZEND_API int zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, int persistent); -ZEND_API int zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, int persistent, zend_bool bApplyProtection); +ZEND_API int zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent); +ZEND_API int zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection); ZEND_API void zend_ts_hash_destroy(TsHashTable *ht); ZEND_API void zend_ts_hash_clean(TsHashTable *ht); |