diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-02 17:32:49 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-02 17:33:32 +0100 |
| commit | 5613b2627a4f9e74296ec2dcfb9079516d4f41e0 (patch) | |
| tree | 76431c66bed92b6441f48f9cf338de9d4e6cd80d /Private/NewBoot/BootKit | |
| parent | e1e6032cfa5d0c55424d5badd65bfd186a44ab93 (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.hxx | 5 |
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}; }; /***********************************************************************************/ |
