2 * This file is part of DisOrder.
3 * Copyright (C) 2004, 2005 Richard Kettlewell
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.
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.
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
24 typedef struct dcgi_global {
25 disorder_client *client;
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;
39 typedef struct dcgi_state {
41 struct queue_entry *track;
51 int nav_len, nav_dirlen;
54 void disorder_cgi(cgi_sink *output, dcgi_state *ds);
55 void disorder_cgi_error(cgi_sink *output, dcgi_state *ds,
66 /* arch-tag:a555827f0549ee9a35303c2d0f9dabc5 */