mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-21 18:55:22 -04:00
Fix truncation issue with 64-bit contants on Windows, update Kaitai patch script
This commit is contained in:
parent
f02f828571
commit
7a161f577a
5 changed files with 23 additions and 14 deletions
|
@ -31,7 +31,7 @@ public:
|
|||
IBB_SEGMENT_TYPE_NON_IBB = 1
|
||||
};
|
||||
|
||||
enum structure_ids_t {
|
||||
enum structure_ids_t : uint64_t {
|
||||
STRUCTURE_IDS_PMDA = 6872283318001360735LL,
|
||||
STRUCTURE_IDS_PMSG = 6872289979495636831LL,
|
||||
STRUCTURE_IDS_ACBP = 6872299801917087583LL,
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
IBB_SEGMENT_TYPE_NON_IBB = 1
|
||||
};
|
||||
|
||||
enum structure_ids_t {
|
||||
enum structure_ids_t : uint64_t {
|
||||
STRUCTURE_IDS_PMDA = 6872283318001360735LL,
|
||||
STRUCTURE_IDS_PMSG = 6872289979495636831LL,
|
||||
STRUCTURE_IDS_ACBP = 6872299801917087583LL,
|
||||
|
|
|
@ -18,7 +18,7 @@ public:
|
|||
class signature_t;
|
||||
class key_signature_t;
|
||||
|
||||
enum structure_ids_t {
|
||||
enum structure_ids_t : uint64_t {
|
||||
STRUCTURE_IDS_KEYM = 6872296602200661855LL
|
||||
};
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ public:
|
|||
class public_key_t;
|
||||
class header_t;
|
||||
|
||||
enum structure_ids_t {
|
||||
enum structure_ids_t : uint64_t {
|
||||
STRUCTURE_IDS_KEYM = 6872296602200661855LL
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue