excess
[dana/dcompmgr.git] / fade.h
1 #ifndef dc__fade_h
2 #define dc__fade_h
3
4 #include <sys/time.h>
5
6 struct d_screen;
7
8 void fade_init(struct d_screen *sc, int id);
9 void fade_free(struct d_screen *sc);
10 int fade_next_timeout(struct d_screen *sc, struct timeval *tv);
11 void fade_timeout(struct d_screen *sc, const struct timeval *now);
12
13 #endif