Commit a37e8a7e authored by David Reid's avatar David Reid

Add some endif comments.

parent 73ed0205
...@@ -42135,17 +42135,17 @@ Decoding ...@@ -42135,17 +42135,17 @@ Decoding
#ifndef MA_NO_WAV #ifndef MA_NO_WAV
/* dr_wav_h begin */ /* dr_wav_h begin */
/* dr_wav_h end */ /* dr_wav_h end */
#endif #endif /* MA_NO_WAV */
#ifndef MA_NO_FLAC #ifndef MA_NO_FLAC
/* dr_flac_h begin */ /* dr_flac_h begin */
/* dr_flac_h end */ /* dr_flac_h end */
#endif #endif /* MA_NO_FLAC */
#ifndef MA_NO_MP3 #ifndef MA_NO_MP3
/* dr_mp3_h begin */ /* dr_mp3_h begin */
/* dr_mp3_h end */ /* dr_mp3_h end */
#endif #endif /* MA_NO_MP3 */
static size_t ma_decoder_read_bytes(ma_decoder* pDecoder, void* pBufferOut, size_t bytesToRead) static size_t ma_decoder_read_bytes(ma_decoder* pDecoder, void* pBufferOut, size_t bytesToRead)
...@@ -45579,30 +45579,28 @@ code below please report the bug to the respective repository for the relevant p ...@@ -45579,30 +45579,28 @@ code below please report the bug to the respective repository for the relevant p
#if !defined(DR_WAV_IMPLEMENTATION) && !defined(DRWAV_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */ #if !defined(DR_WAV_IMPLEMENTATION) && !defined(DRWAV_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */
/* dr_wav_c begin */ /* dr_wav_c begin */
/* dr_wav_c end */ /* dr_wav_c end */
#endif #endif /* DRWAV_IMPLEMENTATION */
#endif #endif /* MA_NO_WAV */
#ifndef MA_NO_FLAC #ifndef MA_NO_FLAC
#if !defined(DR_FLAC_IMPLEMENTATION) && !defined(DRFLAC_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */ #if !defined(DR_FLAC_IMPLEMENTATION) && !defined(DRFLAC_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */
/* dr_flac_c begin */ /* dr_flac_c begin */
/* dr_flac_c end */ /* dr_flac_c end */
#endif #endif /* DRFLAC_IMPLEMENTATION */
#endif #endif /* MA_NO_FLAC */
#ifndef MA_NO_MP3 #ifndef MA_NO_MP3
#if !defined(DR_MP3_IMPLEMENTATION) && !defined(DRMP3_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */ #if !defined(DR_MP3_IMPLEMENTATION) && !defined(DRMP3_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */
/* dr_mp3_c begin */ /* dr_mp3_c begin */
/* dr_mp3_c end */ /* dr_mp3_c end */
#endif #endif /* DRMP3_IMPLEMENTATION */
#endif #endif /* MA_NO_MP3 */
/* End globally disabled warnings. */ /* End globally disabled warnings. */
#if defined(_MSC_VER) #if defined(_MSC_VER)
#pragma warning(pop) #pragma warning(pop)
#endif #endif
#endif /* MINIAUDIO_IMPLEMENTATION */ #endif /* MINIAUDIO_IMPLEMENTATION */
/* /*
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment