aboutsummaryrefslogtreecommitdiff
path: root/dmenu/drw.h
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-09-17 23:12:33 +0200
committerpml68 <contact@pml68.dev>2025-09-17 23:12:33 +0200
commit56aab490b2042ed02ff20e1742849237c7128940 (patch)
treea2e494bebf50615d366d32c2dc44792d44854119 /dmenu/drw.h
parentchore: regenerate laptop.diff (diff)
downloadsuckless-setup-56aab490b2042ed02ff20e1742849237c7128940.tar.gz
chore: sync dmenu with upstream
Diffstat (limited to '')
-rw-r--r--dmenu/drw.h4
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);