mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-20 02:05:32 -04:00
Moved '_' symbol in structure definitions to comply with C/C++ standards
Thanks to @elfring
This commit is contained in:
parent
ba0779b415
commit
d6909fe9b6
9 changed files with 69 additions and 69 deletions
|
@ -40,7 +40,7 @@ WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
const QByteArray FIT_SIGNATURE
|
||||
("\x5F\x46\x49\x54\x5F\x20\x20\x20", 8);
|
||||
|
||||
typedef struct _FIT_ENTRY {
|
||||
typedef struct FIT_ENTRY_ {
|
||||
UINT64 Address;
|
||||
UINT32 Size;
|
||||
UINT16 Version;
|
||||
|
@ -48,7 +48,7 @@ typedef struct _FIT_ENTRY {
|
|||
UINT8 Checksum;
|
||||
} FIT_ENTRY;
|
||||
|
||||
typedef struct _INTEL_MICROCODE_HEADER {
|
||||
typedef struct INTEL_MICROCODE_HEADER_ {
|
||||
UINT32 Version;
|
||||
UINT32 Revision;
|
||||
UINT32 Date;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue