mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-04 19:43:22 -05:00
18 lines
230 B
C
18 lines
230 B
C
|
|
||
|
#ifndef __PIPE_H__
|
||
|
#define __PIPE_H__
|
||
|
|
||
|
#include "db.h"
|
||
|
#include <event.h>
|
||
|
|
||
|
int
|
||
|
pipe_setup(struct media_file_info *mfi);
|
||
|
|
||
|
void
|
||
|
pipe_cleanup(void);
|
||
|
|
||
|
int
|
||
|
pipe_audio_get(struct evbuffer *evbuf, int wanted);
|
||
|
|
||
|
#endif /* !__PIPE_H__ */
|