File: shuffle.h

package info (click to toggle)
cdtool 2.1.8-release-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 584 kB
  • ctags: 195
  • sloc: sh: 2,823; ansic: 2,546; makefile: 72
file content (17 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __SHUFFLE_H__
#define __SHUFFLE_H__

#define PID_FILE "/.cdshuffle_"  /* add number 0..9 */

void do_shuffle(
		cdtool_t *cdt,   /* cdtool handle */ 
		int iCDNum,      /* CDROM device 0..9 */
		int iTracks,     /* max number tracks to play */
		int iCount       /* times to repeat play this CD */
		);

int shuffle_lock(int cdnum);
int shuffle_unlock(int cdnum, int stop);

#endif