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:
464 bytes
|
Line | |
---|
1 | #ifndef SCREEN_H |
---|
2 | #define SCREEN_H |
---|
3 | |
---|
4 | #include "../shared/LL.h" |
---|
5 | #include "clients.h" |
---|
6 | |
---|
7 | typedef struct screen |
---|
8 | { |
---|
9 | char *id; |
---|
10 | char *name; |
---|
11 | int wid, hgt; |
---|
12 | int priority; |
---|
13 | int duration; |
---|
14 | int heartbeat; |
---|
15 | LL * widgets; |
---|
16 | client *parent; |
---|
17 | } screen; |
---|
18 | |
---|
19 | |
---|
20 | screen * screen_create(); |
---|
21 | int screen_destroy(screen *s); |
---|
22 | |
---|
23 | screen * screen_find(client *c, char *id); |
---|
24 | |
---|
25 | int screen_add(client *c, char *id); |
---|
26 | int screen_remove(client *c, char *id); |
---|
27 | |
---|
28 | |
---|
29 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.