Index: core/fxcodec/codec/ccodec_pngmodule.h |
diff --git a/core/fxcodec/codec/ccodec_pngmodule.h b/core/fxcodec/codec/ccodec_pngmodule.h |
index 747d346afc1ec03f8ede0e6aeb3f32748ea09612..77c4af3946ed780c1840697980360e8728bbdd2f 100644 |
--- a/core/fxcodec/codec/ccodec_pngmodule.h |
+++ b/core/fxcodec/codec/ccodec_pngmodule.h |
@@ -20,19 +20,19 @@ class CCodec_PngModule { |
FXPNG_Context* Start(void* pModule); |
void Finish(FXPNG_Context* pContext); |
- FX_BOOL Input(FXPNG_Context* pContext, |
- const uint8_t* src_buf, |
- uint32_t src_size, |
- CFX_DIBAttribute* pAttribute); |
- |
- FX_BOOL (*ReadHeaderCallback)(void* pModule, |
- int width, |
- int height, |
- int bpc, |
- int pass, |
- int* color_type, |
- double* gamma); |
- FX_BOOL (*AskScanlineBufCallback)(void* pModule, int line, uint8_t*& src_buf); |
+ bool Input(FXPNG_Context* pContext, |
+ const uint8_t* src_buf, |
+ uint32_t src_size, |
+ CFX_DIBAttribute* pAttribute); |
+ |
+ bool (*ReadHeaderCallback)(void* pModule, |
+ int width, |
+ int height, |
+ int bpc, |
+ int pass, |
+ int* color_type, |
+ double* gamma); |
+ bool (*AskScanlineBufCallback)(void* pModule, int line, uint8_t*& src_buf); |
void (*FillScanlineBufCompletedCallback)(void* pModule, int pass, int line); |
protected: |