error.h: Add CHDIR_PERM error code.
[paraslash.git] / vss.h
1 /*
2  * Copyright (C) 2005-2007 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(void);
11 const char *audio_format_name(int);
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 char *vss_get_header(size_t *header_len);
17 struct timeval *vss_chunk_time(void);
18 int guess_audio_format(const char *name);
19 int compute_afhi(const char *path, char *data, size_t size,
20         struct audio_format_info *afhi);
21 const char *supported_audio_formats(void);
22 int vss_get_chunk(long unsigned chunk_num, char **buf, size_t *len);
23
24 /** stop playing after current audio file */
25 #define VSS_NOMORE 1
26 /** skip remaining part of current audio file */
27 #define VSS_NEXT 2
28 /** a reposition request was sent by a client */
29 #define VSS_REPOS 4
30 /** currently playing */
31 #define VSS_PLAYING 8
32 /** a client requested to change the audio file selector */
33 #define VSS_CHANGE 16