simplify sched: nuke PRE_EOF_IS_ERROR
[paraslash.git] / afs.h
1 /*
2  * Copyright (C) 2005-2006 Andre Noll <maan@systemlinux.org>
3  *
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  *
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  *
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /** \file afs.h exported functions from afs.c (para_server) */
20 void afs_init(void);
21 void afs_send_chunk(void);
22 struct timeval *afs_preselect(void);
23 const char *audio_format_name(int);
24 unsigned int afs_playing(void);
25 unsigned int afs_next(void);
26 unsigned int afs_repos(void);
27 unsigned int afs_paused(void);
28 char *afs_get_header(int *header_len);
29 struct timeval *afs_chunk_time(void);
30 int guess_audio_format(const char *name);
31 const char *supported_audio_formats(void);
32 /* status flags */
33 #define AFS_NOMORE 1
34 #define AFS_NEXT 2
35 #define AFS_REPOS 4
36 #define AFS_PLAYING 8
37 #define DBT_CHANGE 16