diff options
Diffstat (limited to 'dmenu/drw.h')
| -rw-r--r-- | dmenu/drw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dmenu/drw.h b/dmenu/drw.h index 48f2f93..94b8bbd 100644 --- a/dmenu/drw.h +++ b/dmenu/drw.h @@ -12,7 +12,7 @@ typedef struct Fnt { struct Fnt *next; } Fnt; -enum { ColFg, ColBg }; /* Clr scheme index */ +enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */ typedef XftColor Clr; typedef struct { @@ -30,7 +30,7 @@ typedef struct { } Drw; /* Drawable abstraction */ -Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h, Visual*, unsigned int, Colormap); +Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h, Visual *visual, unsigned int depth, Colormap cmap); void drw_resize(Drw *drw, unsigned int w, unsigned int h); void drw_free(Drw *drw); |
