comparison dwm.h @ 350:b10852dbbffe

3->4 colors
author Anselm R. Garbe <arg@10kloc.org>
date Thu, 24 Aug 2006 12:04:56 +0200
parents a1901753deef
children 5a8bdc3b37cb
comparison
equal deleted inserted replaced
349:2bc2746a52c3 350:b10852dbbffe
34 XFontStruct *xfont; 34 XFontStruct *xfont;
35 } Fnt; 35 } Fnt;
36 36
37 typedef struct { /* draw context */ 37 typedef struct { /* draw context */
38 int x, y, w, h; 38 int x, y, w, h;
39 unsigned long bg; 39 unsigned long bg[2];
40 unsigned long fg; 40 unsigned long fg[2];
41 unsigned long border;
42 Drawable drawable; 41 Drawable drawable;
43 Fnt font; 42 Fnt font;
44 GC gc; 43 GC gc;
45 } DC; 44 } DC;
46 45