]> Pileus Git - lackey/blob - view/help.c
4015f15072079d2017de666d00e3b619066c9fc6
[lackey] / view / help.c
1 #include <ncurses.h>
2
3 /* Static data */
4 static WINDOW *win;
5
6 /* Help init */
7 void help_init(WINDOW *_win)
8 {
9         win = _win;
10 }
11
12 /* Help draw */
13 void help_draw(void)
14 {
15         mvwprintw(win, 0, 1, "%s\n", "help");
16         wrefresh(win);
17 }
18
19 /* Help run */
20 int help_run(int key, mmask_t btn, int row, int col)
21 {
22         return 0;
23 }