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/fdf/php3_fdf.h | |
parent | 4fe8fe715e4347a4063a57e1a9fd6dc013ca9ee0 (diff) | |
download | php-git-b57dc275950b228f2399990471c4f22b7d154c6c.tar.gz |
- run ext sources through conv_proto
- add necessary phpext_*_ptr
Diffstat (limited to 'ext/fdf/php3_fdf.h')
-rw-r--r-- | ext/fdf/php3_fdf.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/ext/fdf/php3_fdf.h b/ext/fdf/php3_fdf.h index 4a83c62468..9b60791641 100644 --- a/ext/fdf/php3_fdf.h +++ b/ext/fdf/php3_fdf.h @@ -40,24 +40,24 @@ #include <FdfTk.h> extern php3_module_entry fdf_module_entry; -#define fdf_module_ptr &fdf_module_entry +#define phpext_fdf_ptr &fdf_module_entry extern int php3_minit_fdf(INIT_FUNC_ARGS); extern int php3_mend_fdf(void); -extern void php3_info_fdf(ZEND_MODULE_INFO_FUNC_ARGS); -extern void php3_fdf_open(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_close(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_create(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_save(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_get_value(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_set_value(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_next_field_name(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_set_ap(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_get_status(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_set_status(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_set_file(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_fdf_get_file(INTERNAL_FUNCTION_PARAMETERS); +void php3_info_fdf(ZEND_MODULE_INFO_FUNC_ARGS); +PHP_FUNCTION(fdf_open); +PHP_FUNCTION(fdf_close); +PHP_FUNCTION(fdf_create); +PHP_FUNCTION(fdf_save); +PHP_FUNCTION(fdf_get_value); +PHP_FUNCTION(fdf_set_value); +PHP_FUNCTION(fdf_next_field_name); +PHP_FUNCTION(fdf_set_ap); +PHP_FUNCTION(fdf_get_status); +PHP_FUNCTION(fdf_set_status); +PHP_FUNCTION(fdf_set_file); +PHP_FUNCTION(fdf_get_file); #else -#define fdf_module_ptr NULL +#define phpext_fdf_ptr NULL #endif #endif /* _PHP3_FDF_H */ |