File: cdrom.h

package info (click to toggle)
workman 1.3.4-28
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,284 kB
  • ctags: 1,187
  • sloc: ansic: 14,630; makefile: 145; sh: 78
file content (40 lines) | stat: -rw-r--r-- 1,399 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef CDROM_H
#define CDROM_H
/*
 * $Id: cdrom.h,v 1.4 1999/02/12 13:55:19 dirk Exp $
 *
 * This file is part of WorkMan, the civilized CD player program
 * (c) 1991-1997 by Steven Grimm (original author)
 * (c) by Dirk Frsterling (current 'author' = maintainer)
 * The maintainer can be contacted by his e-mail address:
 * milliByte@DeathsDoor.com 
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * Prototypes from cdrom.c
 * 
 * This is just one more step to a more modular and understandable code.
 */

int	cd_status( void );
void	play_chunk( int start, int end, int realstart );
int	eject_cd( void );
int     cd_closetray( void );
void	play_from_pos( int pos );
int	read_initial_volume( int max );
void	pause_cd( void );
void	stop_cd( void );
int	find_trkind( int track, int index, int start );
void	play_cd( int start, int pos, int end );
int	susleep( int usec );
void	cd_volume( int vol, int bal, int max );

#endif /* CDROM_H */