summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/SystemKit/FileAPI.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Kits/SystemKit/FileAPI.hxx')
-rw-r--r--Public/Kits/SystemKit/FileAPI.hxx8
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: