Last change
on this file 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:
520 bytes
|
Line | |
---|
1 | #ifndef SCREENLIST_H |
---|
2 | #define SCREENLIST_H |
---|
3 | |
---|
4 | #include "screen.h" |
---|
5 | |
---|
6 | |
---|
7 | #define SCR_HOLD 1 |
---|
8 | #define SCR_SKIP 2 |
---|
9 | #define SCR_BACK 3 |
---|
10 | #define RENDER_HOLD 11 |
---|
11 | #define RENDER_SKIP 12 |
---|
12 | #define RENDER_BACK 13 |
---|
13 | |
---|
14 | extern int screenlist_action; |
---|
15 | extern int timer; |
---|
16 | |
---|
17 | int screenlist_init(); |
---|
18 | int screenlist_shutdown(); |
---|
19 | |
---|
20 | LL * screenlist_getlist(); |
---|
21 | screen * screenlist_current(); |
---|
22 | |
---|
23 | int screenlist_add(screen *s); |
---|
24 | screen * screenlist_next(); |
---|
25 | screen * screenlist_prev(); |
---|
26 | |
---|
27 | int screenlist_remove(screen *s); |
---|
28 | int screenlist_remove_all(screen *s); |
---|
29 | |
---|
30 | |
---|
31 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.