Mercurial > audlegacy-plugins
view src/alac/stream.h @ 2138:76f9a4168708
Fix linking with libaudid3tag
Linking with libaudid3tag from /usr/lib/audacious, add rpath (affected to tta,
shnplug and madplug plugins)
| author | Vitaly Lipatov <lav@etersoft.ru> |
|---|---|
| date | Sat, 27 Oct 2007 19:34:46 -0500 |
| parents | 74df3bd6f472 |
| children | ed6c81bd9016 |
line wrap: on
line source
#ifndef STREAM_H #define STREAM_H /* stream.h */ #include "config.h" #if HAVE_STDINT_H # include <stdint.h> #else # if HAVE_INTTYPES_H # include <inttypes.h> # endif #endif #include <audacious/plugin.h> #include <audacious/vfs.h> typedef struct stream_tTAG stream_t; void stream_read(stream_t *stream, size_t len, void *buf); int32_t stream_read_int32(stream_t *stream); uint32_t stream_read_uint32(stream_t *stream); int16_t stream_read_int16(stream_t *stream); uint16_t stream_read_uint16(stream_t *stream); int8_t stream_read_int8(stream_t *stream); uint8_t stream_read_uint8(stream_t *stream); void stream_skip(stream_t *stream, size_t skip); int stream_eof(stream_t *stream); long stream_tell(stream_t *stream); int stream_setpos(stream_t *stream, long pos); stream_t *stream_create_file(VFSFile *file, int bigendian); void stream_destroy(stream_t *stream); #endif /* STREAM_H */
