FS2_Open
Open source remastering of the Freespace 2 engine
ogg.h
Go to the documentation of this file.
1 
2 #ifndef _OGG_H_
3 #define _OGG_H_
4 
5 #include <vorbis/vorbisfile.h>
6 
7 //Setup the OGG stuff to use cfile
8 extern ov_callbacks cfile_callbacks;
9 extern ov_callbacks mmio_callbacks;
10 
11 //Init the ogg system
12 int OGG_init();
13 
14 //Similar to the stuff in mmreg.h
15 #define OGG_FORMAT_VORBIS 0x3000 /* OGG Files */
16 
17 #endif // _OGG_H_
ov_callbacks cfile_callbacks
Definition: ogg.cpp:17
ov_callbacks mmio_callbacks
Definition: ogg.cpp:18
int OGG_init()
Definition: ogg.cpp:108