mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-18 21:51:47 +00:00
3d26549032
This was SVN commit r3802.
10 lines
207 B
C
10 lines
207 B
C
void* ogg_create();
|
|
|
|
void ogg_give_raw(void* o, void* p, size_t size);
|
|
|
|
void ogg_open(void* o, ALenum& fmt, ALsizei& freq);
|
|
|
|
size_t ogg_read(void* o, void* buf, size_t max_size);
|
|
|
|
void ogg_release(void* o);
|