Tao.Sdl SDK Documentation

SdlImage.SDL_IMAGE_VERSION Method 

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

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

Return Value

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

Remarks

Binds to C-function call in SDL_image.h:

#define SDL_IMAGE_VERSION(X)
            {
            (X)->major = SDL_IMAGE_MAJOR_VERSION;
            (X)->minor = SDL_IMAGE_MINOR_VERSION;
            (X)->patch = SDL_IMAGE_PATCHLEVEL;
            }

See Also

SdlImage Class | Tao.Sdl Namespace