|
Size: 1174
Comment: minor correction
|
Size: 831
Comment: edits w/ Sam
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 6: | Line 6: |
| A structure that contains information ^about^ the version of SDL in use. | A structure that contains information about the version of SDL in use. |
| Line 26: | Line 26: |
<<Color2(green,Does the following belong to this structure?)>> Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL ||#define||SDL_MAJOR_VERSION||1<<BR>>|| ||#define||SDL_MINOR_VERSION||3<<BR>>|| ||#define||SDL_PATCHLEVEL||0|| <<Color2(green,There are a number of macros for this header. Do they go anywhere in this wiki?)>> |
DRAFT |
SDL_version
A structure that contains information about the version of SDL in use.
Data Fields
Uint8 |
major |
major version |
Uint8 |
minor |
minor version |
Uint8 |
patch |
update version |
Code Examples
You can add your code example here
Remarks
Represents the library's version as three levels:
- major revision (increments with massive changes, additions, and enhancements)
- minor revision (increments with backwards-compatible changes to the major revision), and
- patchlevel (increments with fixes to the minor revision)
