~ubuntu-branches/ubuntu/lucid/mpg123/lucid

« back to all changes in this revision

Viewing changes to src/buffer.h

Tags: upstream-0.60
ImportĀ upstreamĀ versionĀ 0.60

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        buffer.h: output buffer
 
3
 
 
4
        copyright 1999-2006 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.de
 
6
        initially written by Daniel Kobras / Oliver Fromme
 
7
*/
 
8
 
 
9
/*
 
10
 * Application specific interaction between main and buffer
 
11
 * process. This is much less generic than the functions in
 
12
 * xfermem so I chose to put it in buffer.[hc].
 
13
 * 01/28/99 [dk]
 
14
 */
 
15
 
 
16
#ifndef _MPG123_BUFFER_H_
 
17
#define _MPG123_BUFFER_H_
 
18
 
 
19
void buffer_ignore_lowmem(void);
 
20
void buffer_end(void);
 
21
void buffer_resync(void);
 
22
void buffer_reset(void);
 
23
void buffer_start(void);
 
24
void buffer_stop(void);
 
25
 
 
26
#endif