table of contents
other versions
- experimental 3~git20250302~78a2035+ds-1
SDL_MIXER_VERSION_ATLEAST(3) | SDL_mixer3 FUNCTIONS | SDL_MIXER_VERSION_ATLEAST(3) |
NAME¶
SDL_MIXER_VERSION_ATLEAST - This macro will evaluate to true if compiled with SDL_mixer at least X.Y.Z.
HEADER FILE¶
Defined in SDL3_mixer/SDL_mixer.h
SYNOPSIS¶
#include "SDL3_mixer/SDL_mixer.h"
#define SDL_MIXER_VERSION_ATLEAST(X, Y, Z) .BI ((SDL_MIXER_MAJOR_VERSION>=X)&&.BI (SDL_MIXER_MAJOR_VERSION > X || SDL_MIXER_MINOR_VERSION >= Y) && .BI (SDL_MIXER_MAJOR_VERSION>X||SDL_MIXER_MINOR_VERSION>Y||SDL_MIXER_MICRO_VERSION>=Z))
SDL_mixer 3.0.0 | SDL_mixer |