mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
Killed some compile warnings.
This commit is contained in:
parent
a1ba58a46c
commit
84e5576f97
@ -92,6 +92,11 @@ typedef FILE gdIOCtx;
|
||||
#define CTX_PUTC(c,fp) fputc(c, fp)
|
||||
#endif
|
||||
|
||||
gdImagePtr _php_image_create_from_string ( zval **Data, char *tn, gdImagePtr (*ioctx_func_p)() );
|
||||
static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImagePtr (*func_p)(), gdImagePtr (*ioctx_func_p)());
|
||||
static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p)());
|
||||
static int _php_image_type ( char data[8] );
|
||||
static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
|
||||
static void _php_image_bw_convert(gdImagePtr im_org, gdIOCtx *out, int threshold);
|
||||
|
||||
#ifdef THREAD_SAFE
|
||||
|
@ -143,13 +143,6 @@ PHP_FUNCTION(jpeg2wbmp);
|
||||
PHP_FUNCTION(png2wbmp);
|
||||
PHP_FUNCTION(image2wbmp);
|
||||
|
||||
|
||||
gdImagePtr _php_image_create_from_string ( zval **Data, char *tn, gdImagePtr (*ioctx_func_p)() );
|
||||
static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImagePtr (*func_p)(), gdImagePtr (*ioctx_func_p)());
|
||||
static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p)());
|
||||
static int _php_image_type ( char data[8] );
|
||||
static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
|
||||
|
||||
PHPAPI int phpi_get_le_gd(void);
|
||||
|
||||
/* This is missing from gd.h */
|
||||
|
Loading…
Reference in New Issue
Block a user