diff options
author | Sascha Schumann <sas@php.net> | 1999-05-21 10:06:25 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-05-21 10:06:25 +0000 |
commit | b57dc275950b228f2399990471c4f22b7d154c6c (patch) | |
tree | a89fe99e356b218591b0b0b392862e0b9ddd4e7e /ext/dbase/php_dbase.h | |
parent | 4fe8fe715e4347a4063a57e1a9fd6dc013ca9ee0 (diff) | |
download | php-git-b57dc275950b228f2399990471c4f22b7d154c6c.tar.gz |
- run ext sources through conv_proto
- add necessary phpext_*_ptr
Diffstat (limited to 'ext/dbase/php_dbase.h')
-rw-r--r-- | ext/dbase/php_dbase.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/dbase/php_dbase.h b/ext/dbase/php_dbase.h index 35f78163bd..3eb82d094b 100644 --- a/ext/dbase/php_dbase.h +++ b/ext/dbase/php_dbase.h @@ -36,16 +36,16 @@ extern php3_module_entry dbase_module_entry; #define dbase_module_ptr &dbase_module_entry extern int php3_minit_dbase(INIT_FUNC_ARGS); -extern void php3_dbase_open(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_create(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_close(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_numrecords(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_numfields(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_add_record(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_get_record(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_delete_record(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_pack(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dbase_get_record_with_names(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(dbase_open); +PHP_FUNCTION(dbase_create); +PHP_FUNCTION(dbase_close); +PHP_FUNCTION(dbase_numrecords); +PHP_FUNCTION(dbase_numfields); +PHP_FUNCTION(dbase_add_record); +PHP_FUNCTION(dbase_get_record); +PHP_FUNCTION(dbase_delete_record); +PHP_FUNCTION(dbase_pack); +PHP_FUNCTION(dbase_get_record_with_names); #else #define dbase_module_ptr NULL #endif |