Tao.Sdl SDK Documentation

SdlNet.SDL_NET_VERSION Method 

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

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

Return Value

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

Remarks

Binds to C-function call in SDL_net.h:

#define SDL_NET_VERSION(X)
            {
            (X)->major = SDL_NET_MAJOR_VERSION;
            (X)->minor = SDL_NET_MINOR_VERSION;
            (X)->patch = SDL_NET_PATCHLEVEL;
            }

See Also

SdlNet Class | Tao.Sdl Namespace