include: Add \since to all documentation that was missing it.

This commit is contained in:
Ryan C. Gordon
2024-04-11 13:34:29 -04:00
parent db39de7f63
commit 0df988389c
33 changed files with 330 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ extern "C" {
* SDL_MessageBox flags.
*
* If supported will display warning icon, etc.
*
* \since This enum is available since SDL 3.0.0.
*/
typedef enum SDL_MessageBoxFlags
{
@@ -48,6 +50,8 @@ typedef enum SDL_MessageBoxFlags
/**
* Flags for SDL_MessageBoxButtonData.
*
* \since This enum is available since SDL 3.0.0.
*/
typedef enum SDL_MessageBoxButtonFlags
{
@@ -57,6 +61,8 @@ typedef enum SDL_MessageBoxButtonFlags
/**
* Individual button data.
*
* \since This struct is available since SDL 3.0.0.
*/
typedef struct SDL_MessageBoxButtonData
{
@@ -67,6 +73,8 @@ typedef struct SDL_MessageBoxButtonData
/**
* RGB value used in a message box color scheme
*
* \since This struct is available since SDL 3.0.0.
*/
typedef struct SDL_MessageBoxColor
{
@@ -85,6 +93,8 @@ typedef enum SDL_MessageBoxColorType
/**
* A set of colors to use for message box dialogs
*
* \since This struct is available since SDL 3.0.0.
*/
typedef struct SDL_MessageBoxColorScheme
{
@@ -93,6 +103,8 @@ typedef struct SDL_MessageBoxColorScheme
/**
* MessageBox structure containing title, text, window, etc.
*
* \since This struct is available since SDL 3.0.0.
*/
typedef struct SDL_MessageBoxData
{