1 /*
2  *   cdda - CD Digital Audio support
3  *
4  *   Copyright (C) 1993-2004  Ti Kan
5  *   E-mail: xmcd@amb.org
6  *
7  *   This program is free software; you can redistribute it and/or modify
8  *   it under the terms of the GNU General Public License as published by
9  *   the Free Software Foundation; either version 2 of the License, or
10  *   (at your option) any later version.
11  *
12  *   This program is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with this program; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 
22 /*
23  *   File and pipe only (no audio playback) write support
24  */
25 #ifndef	__WR_FP_H__
26 #define	__WR_FP_H__
27 
28 #ifndef lint
29 static char *_wr_fp_h_ident_ = "@(#)wr_fp.h	7.13 03/12/12";
30 #endif
31 
32 #if defined(CDDA_WR_FP) && defined(CDDA_SUPPORTED)
33 
34 /* Exported function prototypes */
35 extern word32_t		fp_winit(void);
36 extern bool_t		fp_write(curstat_t *);
37 extern void		fp_wdone(bool_t);
38 extern void		fp_winfo(char *);
39 
40 #else
41 
42 #define fp_winit	NULL
43 #define fp_write	NULL
44 #define fp_wdone	NULL
45 #define fp_winfo	NULL
46 
47 #endif	/* CDDA_WR_FP CDDA_SUPPORTED */
48 
49 #endif	/* __WR_FP_H__ */
50 
51