mirror of
https://github.com/labwc/labwc.git
synced 2025-10-31 22:25:34 -04:00
15 lines
355 B
C
15 lines
355 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_XBM_H
|
|
#define LABWC_XBM_H
|
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include "xbm/parse.h"
|
|
|
|
/**
|
|
* xbm_load - load theme xbm files into global theme struct
|
|
*/
|
|
void xbm_load_button(const char *filename, struct lab_data_buffer **buffer,
|
|
char *fallback_button, float *rgba);
|
|
|
|
#endif /* LABWC_XBM_H */
|