diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/lib/util/harddisk.h | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/lib/util/harddisk.h')
-rw-r--r-- | src/lib/util/harddisk.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/util/harddisk.h b/src/lib/util/harddisk.h index 5b32c905d94..727f9a3fd07 100644 --- a/src/lib/util/harddisk.h +++ b/src/lib/util/harddisk.h @@ -25,10 +25,10 @@ struct hard_disk_file; struct hard_disk_info { - UINT32 cylinders; - UINT32 heads; - UINT32 sectors; - UINT32 sectorbytes; + uint32_t cylinders; + uint32_t heads; + uint32_t sectors; + uint32_t sectorbytes; }; @@ -43,7 +43,7 @@ void hard_disk_close(hard_disk_file *file); chd_file *hard_disk_get_chd(hard_disk_file *file); hard_disk_info *hard_disk_get_info(hard_disk_file *file); -UINT32 hard_disk_read(hard_disk_file *file, UINT32 lbasector, void *buffer); -UINT32 hard_disk_write(hard_disk_file *file, UINT32 lbasector, const void *buffer); +uint32_t hard_disk_read(hard_disk_file *file, uint32_t lbasector, void *buffer); +uint32_t hard_disk_write(hard_disk_file *file, uint32_t lbasector, const void *buffer); #endif /* __HARDDISK_H__ */ |