labwc/include/xbm/xbm.h

14 lines
270 B
C
Raw Normal View History

2020-08-03 20:56:38 +01:00
#ifndef __LABWC_XBM_H
#define __LABWC_XBM_H
2020-06-29 19:27:59 +01:00
#include <wlr/render/wlr_renderer.h>
2020-08-31 20:01:08 +01:00
#include "xbm/parse.h"
2020-06-29 19:27:59 +01:00
/**
* xbm_load - load theme xbm files into global theme struct
*/
2021-02-21 21:54:40 +00:00
void xbm_load(struct theme *theme, struct wlr_renderer *renderer);
2020-06-29 19:27:59 +01:00
2020-08-03 20:56:38 +01:00
#endif /* __LABWC_XBM_H */