st/patch/xresources.h

18 lines
305 B
C
Raw Normal View History

2019-09-16 14:21:09 +02:00
#include <X11/Xresource.h>
/* Xresources preferences */
enum resource_type {
STRING = 0,
INTEGER = 1,
FLOAT = 2
};
typedef struct {
char *name;
enum resource_type type;
void *dst;
} ResourcePref;
int resource_load(XrmDatabase, char *, enum resource_type, void *);
2021-04-24 00:17:23 +02:00
void config_init(Display *dpy);