]> Pileus Git - lackey/blob - view/help.c
Add copyright
[lackey] / view / help.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <ncurses.h>
19
20 /* Static data */
21 static WINDOW *win;
22
23 /* Help init */
24 void help_init(WINDOW *_win)
25 {
26         win = _win;
27 }
28
29 /* Help draw */
30 void help_draw(void)
31 {
32         mvwprintw(win, 0, 1, "%s\n", "help");
33         wrefresh(win);
34 }
35
36 /* Help run */
37 int help_run(int key, mmask_t btn, int row, int col)
38 {
39         return 0;
40 }