mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-29 14:35:23 -04:00
Big update 0.20.0
- major refactoring round done - added replace actions for volumes - added better Intel signature handling - added support for unsigned Aptio capsules - more GUIDs added to known-GUIDs database - more information about PE and TE sections - shown information about item full size - hexadecimal numbers format changed from 0xAB to ABh - AppleCRC renamed to ZVCRC because it seems not Apple-specific feature after all
This commit is contained in:
parent
fb7e1c4c89
commit
831603dbc9
23 changed files with 1229 additions and 1157 deletions
8
gbe.h
8
gbe.h
|
@ -1,6 +1,6 @@
|
|||
/* gbe.h
|
||||
|
||||
Copyright (c) 2014, Nikolaj Schlej. All rights reserved.
|
||||
Copyright (c) 2015, Nikolaj Schlej. All rights reserved.
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -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 {
|
||||
typedef struct _GBE_MAC_ADDRESS {
|
||||
UINT8 vendor[3];
|
||||
UINT8 device[3];
|
||||
} GBE_MAC;
|
||||
} GBE_MAC_ADDRESS;
|
||||
|
||||
#define GBE_VERSION_OFFSET 10
|
||||
|
||||
typedef struct {
|
||||
typedef struct _GBE_VERSION {
|
||||
UINT8 id : 4;
|
||||
UINT8 minor : 4;
|
||||
UINT8 major;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue