diff options
author | 2012-09-15 21:47:30 +0000 | |
---|---|---|
committer | 2012-09-15 21:47:30 +0000 | |
commit | ab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch) | |
tree | 5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/emu/debug/debugcmd.c | |
parent | d1da89cc7817315f05269205a3f56d36ebba170b (diff) |
First pass at modernizing struct definitions.
Diffstat (limited to 'src/emu/debug/debugcmd.c')
-rw-r--r-- | src/emu/debug/debugcmd.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c index 3bb8eb97581..8e566855a6e 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -34,16 +34,14 @@ TYPE DEFINITIONS ***************************************************************************/ -typedef struct _global_entry global_entry; -struct _global_entry +struct global_entry { void * base; UINT32 size; }; -typedef struct _cheat_map cheat_map; -struct _cheat_map +struct cheat_map { UINT64 offset; UINT64 first_value; @@ -53,8 +51,7 @@ struct _cheat_map }; -typedef struct _cheat_system cheat_system; -struct _cheat_system +struct cheat_system { char cpu; UINT64 length; @@ -66,8 +63,7 @@ struct _cheat_system }; -typedef struct _cheat_region_map cheat_region_map; -struct _cheat_region_map +struct cheat_region_map { UINT64 offset; UINT64 endoffset; |