2 * GDI bitmap definitions
4 * Copyright 1993 Alexandre Julliard
13 /* Handle of the bitmap selected by default in a memory DC */
14 extern HBITMAP BITMAP_hbitmapMemDC
;
16 /* GCs used for B&W and color bitmap operations */
17 extern GC BITMAP_monoGC
, BITMAP_colorGC
;
19 #define BITMAP_GC(bmp) \
20 (((bmp)->bitmap.bmBitsPixel == 1) ? BITMAP_monoGC : BITMAP_colorGC)