914ab63667cb166c812cf0633a52e4e36aef2332
[my-code/ivac.git] / src / display.c
1 /* display.c -- display management stuff
2  *
3  * hackbard@hackdaworld.dyndns.org
4  *
5  */
6
7 #include "display.h"
8
9 int display_init(t_display *display) {
10
11   puts("[display] initializing display ...");
12
13   /* init stuff next .. */
14
15   return D_SUCCESS;
16 }
17
18 int display_refresh(t_display *display) {
19
20   return D_SUCCESS;
21 }
22
23 int display_shutdown(t_display *display) {
24
25   puts("[display] shutdown");
26
27   return D_SUCCESS;
28 }