mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-23 04:59:10 +00:00
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:
parent
37d066b99b
commit
2a775cad6f
5 changed files with 5 additions and 5 deletions
|
@ -56,7 +56,7 @@ extern "C" {
|
|||
/*
|
||||
* Context structure for the random number generator state.
|
||||
*/
|
||||
typedef struct {
|
||||
typedef struct SDLTest_RandomContext {
|
||||
unsigned int a;
|
||||
unsigned int x;
|
||||
unsigned int c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue