wikiheaders: Allow blank lines in post-typedef #define blocks.

Reference Issue #9557.
This commit is contained in:
Ryan C. Gordon 2024-04-25 14:26:49 -04:00
parent ac5a61cd60
commit d29b861a76
No known key found for this signature in database
GPG key ID: FA148B892AB48044
4 changed files with 28 additions and 7 deletions

View file

@ -131,6 +131,7 @@ typedef struct SDL_Window SDL_Window;
* \sa SDL_GetWindowFlags
*/
typedef Uint32 SDL_WindowFlags;
#define SDL_WINDOW_FULLSCREEN 0x00000001U /**< window is in fullscreen mode */
#define SDL_WINDOW_OPENGL 0x00000002U /**< window usable with OpenGL context */
#define SDL_WINDOW_OCCLUDED 0x00000004U /**< window is occluded */
@ -155,6 +156,7 @@ typedef Uint32 SDL_WindowFlags;
#define SDL_WINDOW_TRANSPARENT 0x40000000U /**< window with transparent buffer */
#define SDL_WINDOW_NOT_FOCUSABLE 0x80000000U /**< window should not be focusable */
/**
* Used to indicate that you don't care what the window position is.
*