diff options
Diffstat (limited to 'ext/db/php3_db.h')
-rw-r--r-- | ext/db/php3_db.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/db/php3_db.h b/ext/db/php3_db.h index 08039d5640..dae46dc6bc 100644 --- a/ext/db/php3_db.h +++ b/ext/db/php3_db.h @@ -74,19 +74,19 @@ char *_php3_dbmfirstkey(dbm_info *info); char *_php3_dbmnextkey(dbm_info *info, char *key); /* db file functions */ -extern int php3_minit_db(INIT_FUNC_ARGS); -extern int php3_rinit_db(INIT_FUNC_ARGS); -extern void php3_info_db(ZEND_MODULE_INFO_FUNC_ARGS); -extern void php3_dblist(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmopen(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmclose(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbminsert(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmfetch(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmreplace(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmexists(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmdelete(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmfirstkey(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbmnextkey(INTERNAL_FUNCTION_PARAMETERS); +int php3_minit_db(INIT_FUNC_ARGS); +int php3_rinit_db(INIT_FUNC_ARGS); +void php3_info_db(ZEND_MODULE_INFO_FUNC_ARGS); +PHP_FUNCTION(dblist); +PHP_FUNCTION(dbmopen); +PHP_FUNCTION(dbmclose); +PHP_FUNCTION(dbminsert); +PHP_FUNCTION(dbmfetch); +PHP_FUNCTION(dbmreplace); +PHP_FUNCTION(dbmexists); +PHP_FUNCTION(dbmdelete); +PHP_FUNCTION(dbmfirstkey); +PHP_FUNCTION(dbmnextkey); #undef phpext_db_ptr #define phpext_db_ptr NULL |