mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-29 22:45:16 -04:00
Engine 0.20.6
- added support for recalculation of Apple-specific free space offset value stored in volume's ZeroVector. Thanks to osxreverser for reporting the issue #29. - ZeroVectorCRC renamed to AppleCRC32, because it's Apple-specific after all. - ParsingData handling removed from old codebase, because it's only needed for the new engine.
This commit is contained in:
parent
d78df75de6
commit
c5fec376f7
7 changed files with 78 additions and 137 deletions
|
@ -26,7 +26,7 @@ class TreeItem
|
|||
public:
|
||||
TreeItem(const UINT8 type, const UINT8 subtype = 0, const UINT8 compression = COMPRESSION_ALGORITHM_NONE,
|
||||
const QString &name = QString(), const QString &text = QString(), const QString &info = QString(),
|
||||
const QByteArray & header = QByteArray(), const QByteArray & body = QByteArray(), const QByteArray & parsingData = QByteArray(),
|
||||
const QByteArray & header = QByteArray(), const QByteArray & body = QByteArray(),
|
||||
TreeItem *parent = 0);
|
||||
~TreeItem();
|
||||
|
||||
|
@ -63,10 +63,6 @@ public:
|
|||
QByteArray body() const;
|
||||
bool hasEmptyBody() const;
|
||||
|
||||
QByteArray parsingData() const;
|
||||
bool hasEmptyParsingData() const;
|
||||
void setParsingData(const QByteArray & data);
|
||||
|
||||
QString info() const;
|
||||
void addInfo(const QString &info);
|
||||
void setInfo(const QString &info);
|
||||
|
@ -87,7 +83,6 @@ private:
|
|||
QString itemInfo;
|
||||
QByteArray itemHeader;
|
||||
QByteArray itemBody;
|
||||
QByteArray itemParsingData;
|
||||
TreeItem *parentItem;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue