
Setup the initial template for draw.c to be between X11 calls and the rest of the codebase. This prepares the file to move all the drawing related function here in the next commit.
12 lines
178 B
C
12 lines
178 B
C
#ifndef DUNST_DRAW_H
|
|
#define DUNST_DRAW_H
|
|
|
|
void draw_setup(void);
|
|
|
|
void draw(void);
|
|
|
|
void draw_deinit(void);
|
|
|
|
#endif
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|