Drop -Werror
[pmc.git] / widget.h
blob261379ed28933f8cb8d3a5743919f1d2ac686366
1 #ifndef _WIDGET_H
2 #define _WIDGET_H
4 typedef struct _widget {
5 WINDOW *win;
6 void (*redraw)(struct _widget);
7 void *pdata;
8 int xpos;
9 int width;
10 } widget_t;
12 typedef void (*bw_redraw)(WINDOW *w, void *pdata, int width);
16 #endif