Commit | Line | Data |
---|---|---|
460b9539 | 1 | /* |
2 | * This file is part of DisOrder. | |
3 | * Copyright (C) 2004, 2005 Richard Kettlewell | |
4 | * | |
5 | * This program is free software; you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation; either version 2 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, but | |
11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program; if not, write to the Free Software | |
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |
18 | * USA | |
19 | */ | |
20 | ||
21 | #ifndef DCGI_H | |
22 | #define DCGI_H | |
23 | ||
24 | typedef struct dcgi_global { | |
25 | disorder_client *client; | |
26 | unsigned flags; | |
27 | #define DC_QUEUE 0x0001 | |
28 | #define DC_PLAYING 0x0002 | |
29 | #define DC_RECENT 0x0004 | |
30 | #define DC_VOLUME 0x0008 | |
31 | #define DC_DIRS 0x0010 | |
32 | #define DC_FILES 0x0020 | |
78efa64e | 33 | #define DC_NEW 0x0040 |
460b9539 | 34 | struct queue_entry *queue, *playing, *recent; |
35 | int volume_left, volume_right; | |
36 | char **files, **dirs; | |
37 | int nfiles, ndirs; | |
78efa64e RK |
38 | char **new; |
39 | int nnew; | |
460b9539 | 40 | } dcgi_global; |
41 | ||
42 | typedef struct dcgi_state { | |
43 | dcgi_global *g; | |
44 | struct queue_entry *track; | |
45 | struct kvp *pref; | |
46 | int index; | |
47 | int first, last; | |
48 | struct entry *entry; | |
49 | /* for searching */ | |
50 | int ntracks; | |
51 | char **tracks; | |
52 | /* for @navigate@ */ | |
53 | const char *nav_path; | |
54 | int nav_len, nav_dirlen; | |
55 | } dcgi_state; | |
56 | ||
57 | void disorder_cgi(cgi_sink *output, dcgi_state *ds); | |
58 | void disorder_cgi_error(cgi_sink *output, dcgi_state *ds, | |
59 | const char *msg); | |
60 | ||
61 | #endif /* DCGI_H */ | |
62 | ||
63 | /* | |
64 | Local Variables: | |
65 | c-basic-offset:2 | |
66 | comment-column:40 | |
67 | End: | |
68 | */ |