Refactor variable names for consistency and readability across multiple files

This commit is contained in:
2025-09-30 15:11:27 +01:00
parent 352850a698
commit dda0ee89e8
25 changed files with 1271 additions and 1252 deletions

View File

@@ -31,6 +31,7 @@
/**
* Contains an enumeration of all known types of media.
*/
// NOLINTBEGIN(readability-identifier-naming)
typedef enum
{
// Generics, types 0 to 9
@@ -995,6 +996,8 @@ typedef enum
//
} MediaType;
// NOLINTEND(readability-identifier-naming)
/**
* Contains information about a dump image and its contents
*/
@@ -1090,6 +1093,7 @@ typedef enum
/*
* Metadata present for each media.
*/
// NOLINTBEGIN(readability-identifier-naming)
typedef enum
{
/* CD table of contents */
@@ -1167,6 +1171,8 @@ typedef enum
CD_LeadIn = 68
} MediaTagType;
// NOLINTEND(readability-identifier-naming)
#endif // LIBAARUFORMAT_AARU_H
#ifndef _MSC_VER