summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/BootKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 17:32:49 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-02 17:33:32 +0100
commit5613b2627a4f9e74296ec2dcfb9079516d4f41e0 (patch)
tree76431c66bed92b6441f48f9cf338de9d4e6cd80d /Private/NewBoot/BootKit
parente1e6032cfa5d0c55424d5badd65bfd186a44ab93 (diff)
Bootloader: Working on BFileReader::ReadAll() implementation.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot/BootKit')
-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 bbe2332e..50b14928 100644
--- a/Private/NewBoot/BootKit/BootKit.hxx
+++ b/Private/NewBoot/BootKit/BootKit.hxx
@@ -20,8 +20,8 @@
using namespace HCore;
-typedef VoidPtr PEFImagePtr;
-typedef VoidPtr PEImagePtr;
+typedef Char *PEFImagePtr;
+typedef Char *PEImagePtr;
enum {
kSegmentCode = 2,
@@ -84,6 +84,7 @@ class BFileReader final {
private:
Int32 mErrorCode{kOperationOkay};
CharacterType mPath[kPathLen];
+ VoidPtr mHandle{nullptr};
};
/***********************************************************************************/