You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
397 B
22 lines
397 B
3 years ago
|
#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 *);
|
||
|
#if XRESOURCES_RELOAD_PATCH
|
||
|
void config_init(Display *dpy);
|
||
|
#else
|
||
|
void config_init(void);
|
||
|
#endif // XRESOURCES_RELOAD_PATCH
|