Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_unix/sys/src/games/music/jukebox/playlist.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
 
2
typedef struct Playlistentry {
3
	char	*file;
4
	char	*onum;
5
} Playlistentry;
6
 
7
typedef struct Playlist {
8
	QLock;
9
	int		nentries;
10
	int		selected;
11
	Playlistentry	*entry;
12
} Playlist;
13
 
14
extern Playlist	playlist;
15
extern char	*playctlfile;
16
extern char	*srvmount;
17
extern int	playctlfd;
18
 
19
void	playctlproc(void*a);
20
void	playlistproc(void*);
21
void	playvolproc(void*a);
22
void	sendplayctl(char *fmt, ...);
23
void	sendplaylist(char*, char*);
24
void	setvolume(char *volume);
25
void	updateplaylist(int);
26
void	volumeproc(void *arg);