mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
15 lines
250 B
C
15 lines
250 B
C
|
|
#ifndef XBM_H
|
||
|
|
#define XBM_H
|
||
|
|
|
||
|
|
#include <wlr/render/wlr_renderer.h>
|
||
|
|
|
||
|
|
#include "theme.h"
|
||
|
|
#include "theme/xbm/parse.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* xbm_load - load theme xbm files into global theme struct
|
||
|
|
*/
|
||
|
|
void xbm_load(struct wlr_renderer *renderer);
|
||
|
|
|
||
|
|
#endif /* XBM_H */
|