mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
16 lines
283 B
C++
16 lines
283 B
C++
|
#include <vorbis/codec.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
vorbis_info info;
|
||
|
vorbis_info_init(&info);
|
||
|
vorbis_info_clear(&info);
|
||
|
|
||
|
vorbis_comment comment;
|
||
|
vorbis_comment_init(&comment);
|
||
|
vorbis_comment_add(&comment, "content");
|
||
|
vorbis_comment_clear(&comment);
|
||
|
|
||
|
return 0;
|
||
|
}
|