mirror of
https://github.com/swaywm/sway
synced 2024-11-18 14:53:52 +01:00
13 lines
245 B
C
13 lines
245 B
C
|
#ifndef _SWAYBAR_RENDER_H
|
||
|
#define _SWAYBAR_RENDER_H
|
||
|
|
||
|
#include "config.h"
|
||
|
#include "state.h"
|
||
|
|
||
|
/**
|
||
|
* Render swaybar.
|
||
|
*/
|
||
|
void render(struct output *output, struct swaybar_config *config, struct status_line *line);
|
||
|
|
||
|
#endif /* _SWAYBAR_RENDER_H */
|