gcc484ntopperl-5.22
Last change
on this file since c5c522c was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
590 bytes
|
Line | |
---|
1 | #ifndef MODE_H |
---|
2 | #define MODE_H |
---|
3 | |
---|
4 | #include "main.h" |
---|
5 | |
---|
6 | //TODO: Net stats screen... |
---|
7 | //TODO: "Who" |
---|
8 | //TODO: biff / mail checking, etc... |
---|
9 | |
---|
10 | extern char tmp[]; |
---|
11 | extern char buffer[]; |
---|
12 | extern char host[]; |
---|
13 | |
---|
14 | // Character to use for padding title bars, etc... |
---|
15 | extern int PAD; |
---|
16 | // Character for the "..." symbol. |
---|
17 | extern int ELLIPSIS; |
---|
18 | |
---|
19 | int mode_init(mode *sequence); |
---|
20 | void mode_close(); |
---|
21 | |
---|
22 | int update_screen(mode *m, int display); |
---|
23 | |
---|
24 | int credit_screen(int rep, int display); |
---|
25 | |
---|
26 | |
---|
27 | // These are for the modescreens' use only.. |
---|
28 | void reread(int f, char *errmsg); |
---|
29 | int getentry(const char *tag, const char *bufptr); |
---|
30 | |
---|
31 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.