2 * GDI bitmap definitions
4 * Copyright 1993 Alexandre Julliard
13 /* GCs used for B&W and color bitmap operations */
14 extern GC BITMAP_monoGC
, BITMAP_colorGC
;
16 #define BITMAP_GC(bmp) \
17 (((bmp)->bitmap.bmBitsPixel == 1) ? BITMAP_monoGC : BITMAP_colorGC)