chiark / gitweb /
WIP island determination; can recognise a pixmap!
[ypp-sc-tools.db-live.git] / pctb / convert.h
index 47fdee62bb333bbc22f38cf2c25407dc2797bcea..b5e9230ec1efb485c2d9d3b0369532f4ccc49a75 100644 (file)
@@ -44,7 +44,7 @@
 
 typedef struct RgbImage {
   int w, h;
-  char data[];
+  unsigned char data[];
   /* red   = data[ y*w*3 + x*3 + 0 ] = RI_PIXEL(ri,x,y)[0]
    * green = data[ y*w*3 + x*3 + 1 ] = RI_PIXEL(ri,x,y)[1]
    * blue  = data[ y*w*3 + x*3 + 2 ] = RI_PIXEL(ri,x,y)[2]
@@ -52,7 +52,7 @@ typedef struct RgbImage {
 } RgbImage;
 
 void identify_rgbimage(const RgbImage *base, Rect portion,
-                      char result[MAXIMGIDENT]);
+                      char result[MAXIMGIDENT], const char *what);
 RgbImage *alloc_rgb_image(int w, int h);
 
 #define RI_PIXEL(ri,x,y) ((ri)->data + ((y)*(ri)->w + (x)) * 3)