spmenu/libs/xrdb.h
2023-05-14 00:21:16 +02:00

20 lines
398 B
C

/* See LICENSE file for copyright and license details. */
#if USEXRESOURCES
enum resource_type {
STRING = 0,
INTEGER = 1,
FLOAT = 2
};
typedef struct {
char *name;
enum resource_type type;
void *dst;
} ResourcePref;
// declare functions
static void load_xresources(void);
static void resource_load(XrmDatabase db, char *name, enum resource_type rtype, void *dst);
#endif