Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/FreeRDP-old.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libfreerdp-gdi/color.h')
-rw-r--r--libfreerdp-gdi/color.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libfreerdp-gdi/color.h b/libfreerdp-gdi/color.h
index 2e116c1..14e4f1e 100644
--- a/libfreerdp-gdi/color.h
+++ b/libfreerdp-gdi/color.h
@@ -233,7 +233,7 @@ typedef CLRCONV* HCLRCONV;
#define IBPP(_bpp) (((_bpp + 1)/ 8) % 5)
-typedef uint8* (*p_gdi_image_convert)(uint8* srcData, uint8* dstData, int width, int height, int srcBpp, int dstBpp, HCLRCONV clrconv);
+typedef uint8* (*p_gdi_image_convert_bpp)(uint8* srcData, uint8* dstData, int width, int height, int srcBpp, int dstBpp, HCLRCONV clrconv);
int gdi_get_pixel(uint8 * data, int x, int y, int width, int height, int bpp);
void gdi_set_pixel(uint8* data, int x, int y, int width, int height, int bpp, int pixel);
@@ -244,6 +244,8 @@ uint8* gdi_mono_image_convert(uint8* srcData, int width, int height, int srcBpp,
int gdi_mono_cursor_convert(uint8* srcData, uint8* maskData, uint8* xorMask, uint8* andMask, int width, int height, int bpp, HCLRCONV clrconv);
int gdi_alpha_cursor_convert(uint8* alphaData, uint8* xorMask, uint8* andMask, int width, int height, int bpp, HCLRCONV clrconv);
+typedef uint8* (*p_gdi_image_convert)(uint8* srcData, uint8 *dstData, int width, int height, int srcBpp, int dstBpp, HCLRCONV clrconv);
+
#ifdef __cplusplus
}
#endif