mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-09 13:52:01 -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
|
@ -18,14 +18,14 @@ WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
// Make sure we use right packing rules
|
||||
#pragma pack(push, 1)
|
||||
|
||||
typedef struct _GBE_MAC_ADDRESS {
|
||||
typedef struct GBE_MAC_ADDRESS_ {
|
||||
UINT8 vendor[3];
|
||||
UINT8 device[3];
|
||||
} GBE_MAC_ADDRESS;
|
||||
|
||||
#define GBE_VERSION_OFFSET 10
|
||||
|
||||
typedef struct _GBE_VERSION {
|
||||
typedef struct GBE_VERSION_ {
|
||||
UINT8 id : 4;
|
||||
UINT8 minor : 4;
|
||||
UINT8 major;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue