Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* * Ogglib - a mini library to add Ogg Vorbis support to allegro programs * Based on Peter Wang's quick hack * Distributed under the BSD-like license used by Ogg Vorbis. */ #ifdef __cplusplus extern "C" { #endif extern int load_vorbis_stream_offset (FILE *fp); extern int load_vorbis_stream (const char *filename); extern void unload_vorbis_stream (void); extern int poll_vorbis_stream (void); #ifdef __cplusplus } #endif