#include "camtypes.h"
#include "pngutil.h"
#include "pngprgrs.h"
#include "png.h"
#include "pngfuncs.h"
Go to the source code of this file.
Defines | |
#define | new CAM_DEBUG_NEW |
Functions | |
void | camelot_png_read_row_callback (png_structp png_ptr, png_uint_32 row_number, INT32 pass) |
Pointer to this function given to libpng to be called when a row has been read. | |
Variables | |
PNGProgressBar * | png_progress_bar_read |
|
Definition at line 122 of file pngutil.cpp. |
|
Pointer to this function given to libpng to be called when a row has been read.
Definition at line 148 of file pngutil.cpp. 00149 { 00150 PORTNOTE("other","camelot_png_read_row_callback - removed progressbar") 00151 #ifndef EXCLUDE_FROM_XARALX 00152 png_progress_bar_read->UpdateCallback(png_ptr, row_number, pass); 00153 #endif 00154 }
|
|
Definition at line 130 of file pngutil.cpp. |