#pragma BEGINDUMP
void png_init_io( void )
{
}
/*
void PNGAPI png_init_io( png_structrp png_ptr, png_FILE_p fp )
{
if (png_ptr == NULL)
return;
png_ptr->io_ptr = (png_voidp)fp;
}
*/
#pragma ENDDUMP
function hb_HSetCaseMatch( ... )
return hb_HCaseMatch( ... )
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
# ifdef PNG_STDIO_SUPPORTED
/* Initialize the default input/output functions for the PNG file. If you
* use your own read or write routines, you can call either png_set_read_fn()
* or png_set_write_fn() instead of png_init_io(). If you have defined
* PNG_NO_STDIO or otherwise disabled PNG_STDIO_SUPPORTED, you must use a
* function of your own because "FILE *" isn't necessarily available.
*/
void PNGAPI
png_init_io(png_structrp png_ptr, png_FILE_p fp)
{
png_debug(1, "in png_init_io");
if (png_ptr == NULL)
return;
png_ptr->io_ptr = (png_voidp)fp;
}
# endif
Return to WhatsNew / Novedades
Users browsing this forum: No registered users and 3 guests