The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SDL::Version -- SDL Bindings for structure SDL_Version

CATEGORY

Core, Structure

SYNOPSIS

 use SDL;
 use SDL::Version;
 
 # print compile-time version
 printf("SDL::version is %d.%d.%d\n", SDL::version->major, 
                                      SDL::version->minor,
                                      SDL::version->patch); 
 
 # print linked version
 printf("SDL::linked_version is %d.%d.%d\n", SDL::linked_version->major, 
                                             SDL::linked_version->minor, 
                                             SDL::linked_version->patch);

DESCRIPTION

The SDL::Version structure is used by the SDL::linked_version function and the SDL::version macro. The SDL::linked_version function returns the link-time SDL version whereas the SDL::version macro returns the compile-time SDL version.

METHODS

major

Major version number

minor

Minor version number

patch

Patch version number