ref: 7feab4dc5913c8d072d57e9cc7cc7b3815037fe8
dir: /sys/src/games/music/jukebox/playlist.h/
typedef struct Playlistentry { char *file; char *onum; } Playlistentry; typedef struct Playlist { QLock; int nentries; int selected; Playlistentry *entry; } Playlist; extern Playlist playlist; extern char *playctlfile; extern char *srvmount; extern int playctlfd; void playctlproc(void*a); void playlistproc(void*); void playvolproc(void*a); void sendplayctl(char *fmt, ...); void sendplaylist(char*, char*); void setvolume(char *volume); void updateplaylist(int); void volumeproc(void *arg);