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/gd/php3_gd.h | |
parent | bb8046c4a9a81b5d6d9568d1fb53e9114b1e4f68 (diff) | |
download | php-git-07d691174b38a5bc05aa6c1fc0ff4d135e8d1356.tar.gz |
Symbol work.
Diffstat (limited to 'ext/gd/php3_gd.h')
-rw-r--r-- | ext/gd/php3_gd.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ext/gd/php3_gd.h b/ext/gd/php3_gd.h index d6ef1d53b1..1be536324d 100644 --- a/ext/gd/php3_gd.h +++ b/ext/gd/php3_gd.h @@ -52,9 +52,10 @@ extern php3_module_entry gd_module_entry; #define phpext_gd_ptr &gd_module_entry /* gd.c functions */ -void php3_info_gd(ZEND_MODULE_INFO_FUNC_ARGS); -extern int php3_minit_gd(INIT_FUNC_ARGS); -extern int php3_mend_gd(SHUTDOWN_FUNC_ARGS); +PHP_MINFO_FUNCTION(gd); +extern PHP_MINIT_FUNCTION(gd); +extern PHP_MSHUTDOWN_FUNCTION(gd); + extern int gdImageColorResolve(gdImagePtr, int, int, int); PHP_FUNCTION(imagearc); PHP_FUNCTION(imagechar); @@ -89,8 +90,8 @@ PHP_FUNCTION(imagerectangle); PHP_FUNCTION(imagesetpixel); PHP_FUNCTION(imagestring); PHP_FUNCTION(imagestringup); -PHP_FUNCTION(imagesxfn); -PHP_FUNCTION(imagesyfn); +PHP_FUNCTION(imagesx); +PHP_FUNCTION(imagesy); void php3_free_gd_font(gdFontPtr); void _php3_gdimagecharup(gdImagePtr, gdFontPtr, int, int, int, int); PHP_FUNCTION(imagedashedline); |