/** * See rl_internal.h */ #pragma GCC diagnostic ignored "-Wimplicit-function-declaration" #include "rl_internal.h" #include #include void UnloadAudioBuffer_(rAudioBuffer *buffer) { UnloadAudioBuffer(buffer); TRACELOG(LOG_INFO, "AUDIO: h-raylib successfully auto-unloaded buffer"); } void UnloadMusicStreamData(int ctxType, void *ctxData) { Music music = {0}; music.ctxData = ctxData; music.ctxType = ctxType; UnloadMusicStream(music); TRACELOG(LOG_INFO, "AUDIO: h-raylib successfully auto-unloaded music stream"); }