forked from langsfang/potal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.h
35 lines (29 loc) · 885 Bytes
/
gui.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Created: 05/20/2010 10:10:43 PM
*
* ====
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permission to use or copy this software for any purpose is hereby granted
* without fee, provided the above notices are retained on all copies.
* Permission to modify the code and to distribute modified code is granted,
* provided the above notices are retained, and a notice that the code was
* modified is included with the above copyright notice.
*
*/
#ifndef _GUI_H_
#define _GUI_H_
#include <ncurses.h>
#include "client.h"
void init_gui();
void clean_gui();
void update_gui();
void drawinfo();
void drawpubcard(WINDOW* w, int cdno);
void drawplayer(struct WIN2 *w, int plno);
void drawchip(WINDOW *w);
void drawirc(struct WIN2 *w);
#endif