summaryrefslogtreecommitdiff
path: root/ext/gd/php3_gd.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/php3_gd.h')
-rw-r--r--ext/gd/php3_gd.h82
1 files changed, 41 insertions, 41 deletions
diff --git a/ext/gd/php3_gd.h b/ext/gd/php3_gd.h
index c0a9027230..d3f4dfced3 100644
--- a/ext/gd/php3_gd.h
+++ b/ext/gd/php3_gd.h
@@ -47,51 +47,51 @@ extern php3_module_entry gd_module_entry;
#define phpext_gd_ptr &gd_module_entry
/* gd.c functions */
-extern void php3_info_gd(ZEND_MODULE_INFO_FUNC_ARGS);
+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);
extern int gdImageColorResolve(gdImagePtr, int, int, int);
-extern void php3_imagearc(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagechar(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecharup(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorallocate(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorat(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorclosest(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolordeallocate(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorresolve(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorexact(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorset(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorstotal(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolorsforindex(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecolortransparent(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecopy(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecopyresized(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecreate(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagecreatefromgif (INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagedestroy(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefill(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefilledpolygon(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefilledrectangle(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefilltoborder(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefontwidth(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagefontheight(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagegif (INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imageinterlace(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imageline(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imageloadfont(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagepolygon(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagerectangle(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagesetpixel(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagestring(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagestringup(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagesxfn(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagesyfn(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_free_gd_font(gdFontPtr);
-extern void _php3_gdimagecharup(gdImagePtr, gdFontPtr, int, int, int, int);
-extern void php3_imagedashedline(INTERNAL_FUNCTION_PARAMETERS);
+PHP_FUNCTION(imagearc);
+PHP_FUNCTION(imagechar);
+PHP_FUNCTION(imagecharup);
+PHP_FUNCTION(imagecolorallocate);
+PHP_FUNCTION(imagecolorat);
+PHP_FUNCTION(imagecolorclosest);
+PHP_FUNCTION(imagecolordeallocate);
+PHP_FUNCTION(imagecolorresolve);
+PHP_FUNCTION(imagecolorexact);
+PHP_FUNCTION(imagecolorset);
+PHP_FUNCTION(imagecolorstotal);
+PHP_FUNCTION(imagecolorsforindex);
+PHP_FUNCTION(imagecolortransparent);
+PHP_FUNCTION(imagecopy);
+PHP_FUNCTION(imagecopyresized);
+PHP_FUNCTION(imagecreate);
+PHP_FUNCTION(imagecreatefromgif );
+PHP_FUNCTION(imagedestroy);
+PHP_FUNCTION(imagefill);
+PHP_FUNCTION(imagefilledpolygon);
+PHP_FUNCTION(imagefilledrectangle);
+PHP_FUNCTION(imagefilltoborder);
+PHP_FUNCTION(imagefontwidth);
+PHP_FUNCTION(imagefontheight);
+PHP_FUNCTION(imagegif );
+PHP_FUNCTION(imageinterlace);
+PHP_FUNCTION(imageline);
+PHP_FUNCTION(imageloadfont);
+PHP_FUNCTION(imagepolygon);
+PHP_FUNCTION(imagerectangle);
+PHP_FUNCTION(imagesetpixel);
+PHP_FUNCTION(imagestring);
+PHP_FUNCTION(imagestringup);
+PHP_FUNCTION(imagesxfn);
+PHP_FUNCTION(imagesyfn);
+void php3_free_gd_font(gdFontPtr);
+void _php3_gdimagecharup(gdImagePtr, gdFontPtr, int, int, int, int);
+PHP_FUNCTION(imagedashedline);
#ifdef HAVE_LIBTTF
-extern void php3_imagettfbbox(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_imagettftext(INTERNAL_FUNCTION_PARAMETERS);
+PHP_FUNCTION(imagettfbbox);
+PHP_FUNCTION(imagettftext);
#endif
#else