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 | SDL_image: An example image loading library for use with SDL |
2 | SDL_image: An example image loading library for use with SDL |
| 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 35... | Line 35... | ||
| 35 | 35 | ||
| 36 | /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL |
36 | /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL |
| 37 | */ |
37 | */ |
| 38 | #define SDL_IMAGE_MAJOR_VERSION 2 |
38 | #define SDL_IMAGE_MAJOR_VERSION 2 |
| 39 | #define SDL_IMAGE_MINOR_VERSION 0 |
39 | #define SDL_IMAGE_MINOR_VERSION 0 |
| 40 | #define SDL_IMAGE_PATCHLEVEL |
40 | #define SDL_IMAGE_PATCHLEVEL 4 |
| 41 | 41 | ||
| 42 | /* This macro can be used to fill a version structure with the compile-time |
42 | /* This macro can be used to fill a version structure with the compile-time |
| 43 | * version of the SDL_image library. |
43 | * version of the SDL_image library. |
| 44 | */ |
44 | */ |
| 45 | #define SDL_IMAGE_VERSION(X) \ |
45 | #define SDL_IMAGE_VERSION(X) \ |