mix: Add support for the majority of missing & new functions in newer SDL_mixer versions #612
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for:
2.8.0
2.6.0
2.0.2
2.0.0
The only remaining one as far as I can tell is UnregisterEffect, which itself says "You may not need to call this at all, unless you need to stop an effect from processing in the middle of a chunk's playback.", so I let it be for now.
Then there are a couple, like GetSynchroValue and SetSynchroValue which say "This function does nothing, do not use.", I didn't touch those. There's also GetMusicHookData but a comment in the code says data is never sent in so there's no need to ever get data, I didn't touch that one either.
I also updated the TODO,md to reflect these changes, and crossed the ones I found to already be added, perhaps I was wrong about some of those but they looked complete to me at least.
I tested the ones I could, maybe we should add some examples to show them being used.
Let me know if there's anything I need to change or add!