Release 941122
[wine/multimedia.git] / include / bitmap.h
blob9a2acfaa964f313d99082b54c8adba639e301aae
1 /*
2 * GDI bitmap definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef BITMAP_H
8 #define BITMAP_H
10 #include <X11/Xlib.h>
11 #include "windows.h"
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)
19 #endif /* BITMAP_H */