summaryrefslogtreecommitdiffhomepage
path: root/Public/SDK/SystemKit/FileAPI.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 16:52:49 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 16:52:49 +0100
commit4b7cd3b0536f44a3c95e71550a77df08d9a4c088 (patch)
tree254c11bc837ea179db65d11d3085956ef5ac1793 /Public/SDK/SystemKit/FileAPI.hxx
parent22995df42e039a575b6adf3f30ec0fde4033ca87 (diff)
Breaking changes!
Remove Native Subsystem will move it to Private. SDK now compiles to COFF Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/SDK/SystemKit/FileAPI.hxx')
-rw-r--r--Public/SDK/SystemKit/FileAPI.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Public/SDK/SystemKit/FileAPI.hxx b/Public/SDK/SystemKit/FileAPI.hxx
index 88bf9bfb..089a5882 100644
--- a/Public/SDK/SystemKit/FileAPI.hxx
+++ b/Public/SDK/SystemKit/FileAPI.hxx
@@ -15,14 +15,14 @@
using namespace hCore;
-class MeFile final
+class HFile final
{
public:
- explicit MeFile(const char *path);
- ~MeFile();
+ explicit HFile(const char *path);
+ ~HFile();
public:
- HCORE_COPY_DEFAULT(MeFile);
+ HCORE_COPY_DEFAULT(HFile);
public:
void *Read(SizeT off, SizeT sz);
@@ -36,6 +36,6 @@ class MeFile final
void SetMIME(const char *mime);
};
-typedef MeFile *MeFilePtr;
+typedef HFile *HFilePtr;
#endif // ifndef _SYSTEM_KIT_HCORE_FILE_HPP