diff options
author | Marcus Boerger <helly@php.net> | 2002-11-03 16:43:07 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-03 16:43:07 +0000 |
commit | aaf5911b161d6feb00beabed8465bec9fd5c88b3 (patch) | |
tree | 9fb5c419f4b5879f188fa958c6276ba1d7ad7ab9 /ext/dba/php_dba.h | |
parent | a078f6ecc62f92a202b89afd24262593e4ae73a6 (diff) | |
download | php-git-aaf5911b161d6feb00beabed8465bec9fd5c88b3.tar.gz |
cdb now allows multiple key-value pairs with same key
Diffstat (limited to 'ext/dba/php_dba.h')
-rw-r--r-- | ext/dba/php_dba.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/php_dba.h b/ext/dba/php_dba.h index 832e66638c..886ccbea0b 100644 --- a/ext/dba/php_dba.h +++ b/ext/dba/php_dba.h @@ -52,7 +52,7 @@ extern zend_module_entry dba_module_entry; #define DBA_CLOSE_FUNC(x) \ void dba_close_##x(dba_info *info) #define DBA_FETCH_FUNC(x) \ - char *dba_fetch_##x(dba_info *info, char *key, int keylen, int *newlen) + char *dba_fetch_##x(dba_info *info, char *key, int keylen, int skip, int *newlen) #define DBA_UPDATE_FUNC(x) \ int dba_update_##x(dba_info *info, char *key, int keylen, char *val, int vallen, int mode) #define DBA_EXISTS_FUNC(x) \ |