error.h: Kill two unused alsa error codes.
[paraslash.git] / vss.h
1 /*
2  * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file vss.h exported functions from vss.c (para_server) */
8 void vss_init(void);
9 void vss_send_chunk(void);
10 struct timeval *vss_preselect(fd_set *rfds, fd_set *wfds, int *max_fileno);
11 void vss_post_select(fd_set *rfds, fd_set *wfds);
12 unsigned int vss_playing(void);
13 unsigned int vss_next(void);
14 unsigned int vss_repos(void);
15 unsigned int vss_paused(void);
16 unsigned int vss_stopped(void);
17 char *vss_get_header(size_t *header_len);
18 struct timeval *vss_chunk_time(void);
19 const char *supported_audio_formats(void);
20 int vss_get_chunk(long unsigned chunk_num, char **buf, size_t *len);
21
22 /** stop playing after current audio file */
23 #define VSS_NOMORE 1
24 /** skip remaining part of current audio file */
25 #define VSS_NEXT 2
26 /** a reposition request was sent by a client */
27 #define VSS_REPOS 4
28 /** currently playing */
29 #define VSS_PLAYING 8
30 /** a client requested to change the audio file selector */
31 #define VSS_CHANGE 16