all repos — openbox @ f8a47de5ec444c452093371e3db16857eb39a490

openbox fork - make it a bit more like ryudo

render/color.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __color_h
#define __color_h

#include <X11/Xlib.h>

typedef struct color_rgb {
    int r;
    int g;
    int b;
    unsigned long pixel;
    GC gc;
} color_rgb;

void color_allocate_gc(color_rgb *in);
color_rgb *color_parse(char *colorname);
color_rgb *color_new(int r, int g, int b);
void color_free(color_rgb *in);

#endif /* __color_h */