dunst/src/draw.h
Nikos Tsipinakis 045ec98c0e Setup initial file for draw.c
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.
2018-05-06 13:47:24 +03:00

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: */