X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e19291405ff3995a32c965da9694f2f20aa02468..488194403efc0093d6ae3c6e0c5731b854258805:/src/jpeg/jdatasrc.c diff --git a/src/jpeg/jdatasrc.c b/src/jpeg/jdatasrc.c index edc752bf5d..09a43300aa 100644 --- a/src/jpeg/jdatasrc.c +++ b/src/jpeg/jdatasrc.c @@ -27,7 +27,7 @@ typedef struct { FILE * infile; /* source stream */ JOCTET * buffer; /* start of buffer */ - boolean start_of_file; /* have we gotten any data yet? */ + wxjpeg_boolean start_of_file; /* have we gotten any data yet? */ } my_source_mgr; typedef my_source_mgr * my_src_ptr; @@ -86,7 +86,7 @@ init_source (j_decompress_ptr cinfo) * the front of the buffer rather than discarding it. */ -METHODDEF(boolean) +METHODDEF(wxjpeg_boolean) fill_input_buffer (j_decompress_ptr cinfo) { my_src_ptr src = (my_src_ptr) cinfo->src;