diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-31 12:41:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-31 12:41:06 +0100 |
| commit | f7edf08d067b4c52c3183e8ad0467293e54075e8 (patch) | |
| tree | 0e2894d78684966993ff2bed2df4d6c5e12aef87 /Public/Kits/SystemKit/FileAPI.hxx | |
| parent | fc55f0d69d24fb4908cbd811681f2c3fac53614d (diff) | |
Add BUG_LIST.TXT, kernel improvements and Public kits improvements.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/Kits/SystemKit/FileAPI.hxx')
| -rw-r--r-- | Public/Kits/SystemKit/FileAPI.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Public/Kits/SystemKit/FileAPI.hxx b/Public/Kits/SystemKit/FileAPI.hxx index c55d26ff..350e27f4 100644 --- a/Public/Kits/SystemKit/FileAPI.hxx +++ b/Public/Kits/SystemKit/FileAPI.hxx @@ -24,11 +24,11 @@ class HFile final { HCORE_COPY_DEFAULT(HFile); public: - void *Read(SizeT off, SizeT sz); - void Write(void *buf, SizeT off, SizeT sz); + voidPtr Read(SizeT off, SizeT sz); + void Write(voidPtr buf, SizeT off, SizeT sz); void Seek(SizeT off); - void *Read(SizeT sz); - void Write(void *buf, SizeT sz); + voidPtr Read(SizeT sz); + void Write(voidPtr buf, SizeT sz); void Rewind(); public: |
