helly Thu Nov 13 14:08:42 2003 EDT Modified files: /php-src/ext/dba dba.c Log: Proto fixes (Friedhelm Betz <holliwell|gmx.net>) Index: php-src/ext/dba/dba.c diff -u php-src/ext/dba/dba.c:1.102 php-src/ext/dba/dba.c:1.103 --- php-src/ext/dba/dba.c:1.102 Thu Nov 13 02:53:15 2003 +++ php-src/ext/dba/dba.c Thu Nov 13 14:08:41 2003 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: dba.c,v 1.102 2003/11/13 07:53:15 helly Exp $ */ +/* $Id: dba.c,v 1.103 2003/11/13 19:08:41 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -852,7 +852,7 @@ } /* }}} */ -/* {{{ proto bool dba_exists(string key, int handle) +/* {{{ proto bool dba_exists(string key, resource handle) Checks, if the specified key exists */ PHP_FUNCTION(dba_exists) { @@ -867,7 +867,7 @@ } /* }}} */ -/* {{{ proto string dba_fetch(string key, [int skip ,] int handle) +/* {{{ proto string dba_fetch(string key, [int skip ,] resource handle) Fetches the data associated with key */ PHP_FUNCTION(dba_fetch) { @@ -941,7 +941,7 @@ } /* }}} */ -/* {{{ proto string dba_firstkey(int handle) +/* {{{ proto string dba_firstkey(resource handle) Resets the internal key pointer and returns the first key */ PHP_FUNCTION(dba_firstkey) { @@ -956,7 +956,7 @@ } /* }}} */ -/* {{{ proto string dba_nextkey(int handle) +/* {{{ proto string dba_nextkey(resource handle) Returns the next key */ PHP_FUNCTION(dba_nextkey) { @@ -971,7 +971,7 @@ } /* }}} */ -/* {{{ proto bool dba_delete(string key, int handle) +/* {{{ proto bool dba_delete(string key, resource handle) Deletes the entry associated with key If inifile: remove all other key lines */ PHP_FUNCTION(dba_delete) @@ -990,7 +990,7 @@ } /* }}} */ -/* {{{ proto bool dba_insert(string key, string value, int handle) +/* {{{ proto bool dba_insert(string key, string value, resource handle) If not inifile: Insert value as key, return false, if key exists already If inifile: Add vakue as key (next instance of key) */ PHP_FUNCTION(dba_insert) @@ -999,7 +999,7 @@ } /* }}} */ -/* {{{ proto bool dba_replace(string key, string value, int handle) +/* {{{ proto bool dba_replace(string key, string value, resource handle) Inserts value as key, replaces key, if key exists already If inifile: remove all other key lines */ PHP_FUNCTION(dba_replace) @@ -1008,7 +1008,7 @@ } /* }}} */ -/* {{{ proto bool dba_optimize(int handle) +/* {{{ proto bool dba_optimize(resource handle) Optimizes (e.g. clean up, vacuum) database */ PHP_FUNCTION(dba_optimize) { @@ -1022,7 +1022,7 @@ } /* }}} */ -/* {{{ proto bool dba_sync(int handle) +/* {{{ proto bool dba_sync(resource handle) Synchronizes database */ PHP_FUNCTION(dba_sync) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php