File: dcd.h

package info (click to toggle)
dcd 0.99.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 324 kB
  • ctags: 636
  • sloc: ansic: 4,187; makefile: 100
file content (24 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 
 * This is DCD, Dave's CD Player.
 * (C)1998 David E. Smith <dave@technopagan.org> - released under GNU GPL.
 * See 'COPYING' for details.
 */

#ifndef __DCD_H
#define __DCD_H

#define TRUE 1
#define FALSE (!TRUE)

#ifndef CDROM_DEVICE
#define CDROM_DEVICE "/dev/cdrom"
#endif

#ifndef EXTRA_SLEEP_TIME
#define EXTRA_SLEEP_TIME 0
#endif

int sigterm_handler (int sig);
int sigusr1_handler (int sig);

#endif /* __DCD_H */