SDL: Revert "stdinc: Document more symbols."

From 845855d6573c47f9f4c4074d575e431c90c2348c Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Fri, 6 Sep 2024 15:33:27 -0400
Subject: [PATCH] Revert "stdinc: Document more symbols."

This reverts commit c93f76436fc21898a7a4a1b9a2de1af0bce454fd.

This looked better with the #defines attached to the typedef symbols.
---
 include/SDL3/SDL_stdinc.h | 96 ---------------------------------------
 1 file changed, 96 deletions(-)

diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h
index db5befd2d9274..7d4c5cbd52b63 100644
--- a/include/SDL3/SDL_stdinc.h
+++ b/include/SDL3/SDL_stdinc.h
@@ -221,19 +221,7 @@ typedef bool SDL_bool;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef int8_t Sint8;
-
-/**
- * The largest value that can be held in a signed 8-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_SINT8   ((Sint8)0x7F)           /* 127 */
-
-/**
- * The smallest value that can be held in a signed 8-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_SINT8   ((Sint8)(~0x7F))        /* -128 */
 
 /**
@@ -242,19 +230,7 @@ typedef int8_t Sint8;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef uint8_t Uint8;
-
-/**
- * The largest value that can be held in an unsigned 8-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_UINT8   ((Uint8)0xFF)           /* 255 */
-
-/**
- * The smallest value that can be held in an unsigned 8-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_UINT8   ((Uint8)0x00)           /* 0 */
 
 /**
@@ -263,19 +239,7 @@ typedef uint8_t Uint8;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef int16_t Sint16;
-
-/**
- * The largest value that can be held in a signed 16-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_SINT16  ((Sint16)0x7FFF)        /* 32767 */
-
-/**
- * The smallest value that can be held in a signed 16-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_SINT16  ((Sint16)(~0x7FFF))     /* -32768 */
 
 /**
@@ -284,19 +248,7 @@ typedef int16_t Sint16;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef uint16_t Uint16;
-
-/**
- * The largest value that can be held in an unsigned 16-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_UINT16  ((Uint16)0xFFFF)        /* 65535 */
-
-/**
- * The smallest value that can be held in an unsigned 16-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_UINT16  ((Uint16)0x0000)        /* 0 */
 
 /**
@@ -305,19 +257,7 @@ typedef uint16_t Uint16;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef int32_t Sint32;
-
-/**
- * The largest value that can be held in a signed 32-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_SINT32  ((Sint32)0x7FFFFFFF)    /* 2147483647 */
-
-/**
- * The smallest value that can be held in a signed 32-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_SINT32  ((Sint32)(~0x7FFFFFFF)) /* -2147483648 */
 
 /**
@@ -326,19 +266,7 @@ typedef int32_t Sint32;
  * \since This macro is available since SDL 3.0.0.
  */
 typedef uint32_t Uint32;
-
-/**
- * The largest value that can be held in an unsigned 32-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_UINT32  ((Uint32)0xFFFFFFFFu)   /* 4294967295 */
-
-/**
- * The smallest value that can be held in an unsigned 32-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_UINT32  ((Uint32)0x00000000)    /* 0 */
 
 /**
@@ -349,19 +277,7 @@ typedef uint32_t Uint32;
  * \sa SDL_SINT64_C
  */
 typedef int64_t Sint64;
-
-/**
- * The largest value that can be held in a signed 64-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_SINT64  SDL_SINT64_C(0x7FFFFFFFFFFFFFFF)   /* 9223372036854775807 */
-
-/**
- * The smallest value that can be held in a signed 64-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_SINT64  ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF)  /* -9223372036854775808 */
 
 /**
@@ -372,19 +288,7 @@ typedef int64_t Sint64;
  * \sa SDL_UINT64_C
  */
 typedef uint64_t Uint64;
-
-/**
- * The largest value that can be held in an unsigned 64-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MAX_UINT64  SDL_UINT64_C(0xFFFFFFFFFFFFFFFF)   /* 18446744073709551615 */
-
-/**
- * The smallest value that can be held in an unsigned 64-bit integer.
- *
- * \since This macro is available since SDL 3.0.0.
- */
 #define SDL_MIN_UINT64  SDL_UINT64_C(0x0000000000000000)   /* 0 */
 
 /**