mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
17 lines
296 B
C
17 lines
296 B
C
#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 *);
|
|
void config_init(void); |