dwm.h
changeset 237 7f8f7f14e9cd
parent 235 60e73ebaab27
child 261 d6fd632d861c
equal deleted inserted replaced
236:ebecb98a1c29 237:7f8f7f14e9cd
    41 
    41 
    42 struct DC { /* draw context */
    42 struct DC { /* draw context */
    43 	int x, y, w, h;
    43 	int x, y, w, h;
    44 	unsigned long bg;
    44 	unsigned long bg;
    45 	unsigned long fg;
    45 	unsigned long fg;
       
    46 	unsigned long border;
    46 	Drawable drawable;
    47 	Drawable drawable;
    47 	Fnt font;
    48 	Fnt font;
    48 	GC gc;
    49 	GC gc;
    49 };
    50 };
    50 
    51