mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
14 lines
296 B
C++
14 lines
296 B
C++
#include <ogg/ogg.h>
|
|
|
|
int main()
|
|
{
|
|
ogg_sync_state sync;
|
|
AEDI_EXPECT(ogg_sync_init(&sync) == 0);
|
|
AEDI_EXPECT(ogg_sync_check(&sync) == 0);
|
|
|
|
ogg_stream_state stream;
|
|
AEDI_EXPECT(ogg_stream_init(&stream, 1) == 0);
|
|
AEDI_EXPECT(ogg_stream_check(&stream) == 0);
|
|
|
|
return 0;
|
|
}
|