Remove arch tags throughout
[disorder] / server / dcgi.h
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
33 struct queue_entry *queue, *playing, *recent;
34 int volume_left, volume_right;
35 char **files, **dirs;
36 int nfiles, ndirs;
37 } dcgi_global;
38
39 typedef struct dcgi_state {
40 dcgi_global *g;
41 struct queue_entry *track;
42 struct kvp *pref;
43 int index;
44 int first, last;
45 struct entry *entry;
46 /* for searching */
47 int ntracks;
48 char **tracks;
49 /* for @navigate@ */
50 const char *nav_path;
51 int nav_len, nav_dirlen;
52 } dcgi_state;
53
54 void disorder_cgi(cgi_sink *output, dcgi_state *ds);
55 void disorder_cgi_error(cgi_sink *output, dcgi_state *ds,
56 const char *msg);
57
58 #endif /* DCGI_H */
59
60 /*
61 Local Variables:
62 c-basic-offset:2
63 comment-column:40
64 End:
65 */