1 /*
2 	streamdump: Dumping a copy of the input data.
3 
4 	copyright 2010 by the mpg123 project - free software under the terms of the LGPL 2.1
5 	see COPYING and AUTHORS files in distribution or http://mpg123.org
6 	initially written by Michael Hipp
7 */
8 
9 #ifndef STREAMDUMP_H
10 #define STREAMDUMP_H
11 
12 #include "mpg123app.h"
13 
14 /* Open dump stream, if requested, and replace readers.
15    Return value is 0 for no error, -1 when bad. */
16 int dump_open(mpg123_handle *mh);
17 /* Just close... */
18 void dump_close(void);
19 
20 #endif
21