Jeffrey Smith (@whydoubt) commented about dlls/gdiplus/tests/image.c:
}
}
+INT compare_with_precision(const void *ptr1, const void *ptr2, size_t num, INT precision)
Not a big deal, but arrays of `BYTE`'s are passed in and internally you are comparing as `unsigned char` (which is equivalent to `BYTE`). So I would stick with `BYTE`, and change the parameter types to `const BYTE *`.