Rev 1 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1 | Rev 8 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | /* |
1 | /* |
| 2 | Simple DirectMedia Layer |
2 | Simple DirectMedia Layer |
| 3 | Copyright (C) 1997- |
3 | Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org> |
| 4 | 4 | ||
| 5 | This software is provided 'as-is', without any express or implied |
5 | This software is provided 'as-is', without any express or implied |
| 6 | warranty. In no event will the authors be held liable for any damages |
6 | warranty. In no event will the authors be held liable for any damages |
| 7 | arising from the use of this software. |
7 | arising from the use of this software. |
| 8 | 8 | ||
| Line 57... | Line 57... | ||
| 57 | 57 | ||
| 58 | /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL |
58 | /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL |
| 59 | */ |
59 | */ |
| 60 | #define SDL_MAJOR_VERSION 2 |
60 | #define SDL_MAJOR_VERSION 2 |
| 61 | #define SDL_MINOR_VERSION 0 |
61 | #define SDL_MINOR_VERSION 0 |
| 62 | #define SDL_PATCHLEVEL |
62 | #define SDL_PATCHLEVEL 9 |
| 63 | 63 | ||
| 64 | /** |
64 | /** |
| 65 | * \brief Macro to determine SDL version program was compiled against. |
65 | * \brief Macro to determine SDL version program was compiled against. |
| 66 | * |
66 | * |
| 67 | * This macro fills in a SDL_version structure with the version of the |
67 | * This macro fills in a SDL_version structure with the version of the |