Index: image-bmp.c =================================================================== --- image-bmp.c (revision 12020) +++ image-bmp.c (working copy) @@ -33,12 +33,13 @@ * Constants for the bitmap compression... */ +#ifndef WIN32 # define BI_RGB 0 /* No compression - straight BGR data */ # define BI_RLE8 1 /* 8-bit run-length compression */ # define BI_RLE4 2 /* 4-bit run-length compression */ # define BI_BITFIELDS 3 /* RGB bitmap with RGB masks */ +#endif - /* * Local functions... */