source: npl/mediabox/lcdproc_edwin/src/server/screen.h @ c5c522c

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
7typedef 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
20screen * screen_create();
21int screen_destroy(screen *s);
22
23screen * screen_find(client *c, char *id);
24
25int screen_add(client *c, char *id);
26int screen_remove(client *c, char *id);
27
28
29#endif
Note: See TracBrowser for help on using the repository browser.