Add declarations for ma_decoder_init_file_flac/vorbis/mp3.

This commit is contained in:
David Reid
2019-06-16 10:04:24 +10:00
parent c4f69699f0
commit d2cab99d5e
+3
View File
@@ -3066,6 +3066,9 @@ ma_result ma_decoder_init_memory_raw(const void* pData, size_t dataSize, const m
#ifndef MA_NO_STDIO
ma_result ma_decoder_init_file(const char* pFilePath, const ma_decoder_config* pConfig, ma_decoder* pDecoder);
ma_result ma_decoder_init_file_wav(const char* pFilePath, const ma_decoder_config* pConfig, ma_decoder* pDecoder);
ma_result ma_decoder_init_file_flac(const char* pFilePath, const ma_decoder_config* pConfig, ma_decoder* pDecoder);
ma_result ma_decoder_init_file_vorbis(const char* pFilePath, const ma_decoder_config* pConfig, ma_decoder* pDecoder);
ma_result ma_decoder_init_file_mp3(const char* pFilePath, const ma_decoder_config* pConfig, ma_decoder* pDecoder);
#endif
ma_result ma_decoder_uninit(ma_decoder* pDecoder);