Named typedef-ed structs Gave name to structs that were defined like anonymous struct with name given by typedef. Example 'typedef struct {...} Foo;' -> 'typedef struct Foo {...} Foo;'

This commit is contained in:
Tolik708 2023-12-17 19:28:58 +02:00 committed by Sam Lantinga
parent 37d066b99b
commit 2a775cad6f
5 changed files with 5 additions and 5 deletions

View file

@ -52,7 +52,7 @@ extern "C" {
* GUIDs may be platform-dependent (i.e., the same device may report
* different GUIDs on different operating systems).
*/
typedef struct {
typedef struct SDL_GUID {
Uint8 data[16];
} SDL_GUID;