summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/BootKit/BootKit.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewBoot/BootKit/BootKit.hxx')
-rw-r--r--Private/NewBoot/BootKit/BootKit.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Private/NewBoot/BootKit/BootKit.hxx b/Private/NewBoot/BootKit/BootKit.hxx
index 45f54cb4..6fec1724 100644
--- a/Private/NewBoot/BootKit/BootKit.hxx
+++ b/Private/NewBoot/BootKit/BootKit.hxx
@@ -62,9 +62,9 @@ HCore::SizeT BSetMem(CharacterType *src, const CharacterType byte,
class BFileReader final {
public:
explicit BFileReader(const CharacterType *path);
- ~BFileReader() = default;
+ ~BFileReader();
- HCore::VoidPtr Fetch(SizeT &size);
+ HCore::VoidPtr Fetch(EfiHandlePtr ImageHandle);
enum {
kOperationOkay,
@@ -83,6 +83,7 @@ class BFileReader final {
private:
Int32 mErrorCode{kOperationOkay};
+ VoidPtr mBlob{nullptr};
CharacterType mPath[kPathLen];
BTextWriter mWriter;
BDeviceATA mDevice;