Tao.Sdl SDK Documentation

SdlMixer.MIX_VERSION Method 

This method can be used to fill a version structure with the compile-time version of the SDL_mixer library.

[Visual Basic]
Public Shared Function MIX_VERSION() As SDL_version
[C#]
public static SDL_version MIX_VERSION();

Return Value

This function returns a Sdl.SDL_version struct containing the compiled version number

Remarks

Binds to C-function call in SDL_mixer.h:

#define SDL_MIX_VERSION(X)
            {
            (X)->major = SDL_MIX_MAJOR_VERSION;
            (X)->minor = SDL_MIX_MINOR_VERSION;
            (X)->patch = SDL_MIX_PATCHLEVEL;
            }

See Also

SdlMixer Class | Tao.Sdl Namespace