diff options
author | Andrey Hristov <andrey@php.net> | 1999-07-27 19:44:46 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-07-27 19:44:46 +0000 |
commit | 07d691174b38a5bc05aa6c1fc0ff4d135e8d1356 (patch) | |
tree | 1d9930e938977ec797058956d2691854a822b52a /ext/fdf/php3_fdf.h | |
parent | bb8046c4a9a81b5d6d9568d1fb53e9114b1e4f68 (diff) | |
download | php-git-07d691174b38a5bc05aa6c1fc0ff4d135e8d1356.tar.gz |
Symbol work.
Diffstat (limited to 'ext/fdf/php3_fdf.h')
-rw-r--r-- | ext/fdf/php3_fdf.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/fdf/php3_fdf.h b/ext/fdf/php3_fdf.h index 9b60791641..553982295a 100644 --- a/ext/fdf/php3_fdf.h +++ b/ext/fdf/php3_fdf.h @@ -42,9 +42,10 @@ extern php3_module_entry fdf_module_entry; #define phpext_fdf_ptr &fdf_module_entry -extern int php3_minit_fdf(INIT_FUNC_ARGS); -extern int php3_mend_fdf(void); -void php3_info_fdf(ZEND_MODULE_INFO_FUNC_ARGS); +extern PHP_MINIT_FUNCTION(fdf); +extern PHP_MSHUTDOWN_FUNCTION(fdf); +PHP_MINFO_FUNCTION(fdf); + PHP_FUNCTION(fdf_open); PHP_FUNCTION(fdf_close); PHP_FUNCTION(fdf_create); |