mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-14 00:11:16 +00:00
12 lines
266 B
C++
12 lines
266 B
C++
|
#include <FLAC/all.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
FLAC__StreamDecoder* decoder = FLAC__stream_decoder_new();
|
||
|
AEDI_EXPECT(decoder != nullptr);
|
||
|
AEDI_EXPECT(FLAC__stream_decoder_set_md5_checking(decoder, true));
|
||
|
FLAC__stream_decoder_delete(decoder);
|
||
|
|
||
|
return 0;
|
||
|
}
|