]> icculus.org git repositories - mikachu/rspanel.git/blob - icon.h
load the theme based on _OB_THEME, but it doesnt use it yet. also the function gets...
[mikachu/rspanel.git] / icon.h
1 #ifndef rs_icon_h
2 #define rs_icon_h
3
4 struct screen;
5
6 #include <openbox/render.h>
7
8 typedef struct icon
9 {
10         unsigned int width;
11         unsigned int height;
12         RrPixel32 *data;
13 }
14 icon;
15
16 icon* icon_update(struct screen *sc, Window win, gint *nicons);
17 const icon* icon_get_best(icon list[], int num, int w, int h);
18
19 #endif