1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-03 16:13:22 +08:00

Update IFileSystem::Size vtable layout (#209)

This commit is contained in:
old-pigeon 2024-02-10 10:01:26 +01:00 committed by GitHub
parent cc4c5c8070
commit 6d3193265c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -425,8 +425,8 @@ public:
virtual void Seek(FileHandle_t file, int pos, FileSystemSeek_t seekType) = 0;
virtual unsigned int Tell(FileHandle_t file) = 0;
virtual unsigned int Size(const char *pFileName, const char *pPathID = 0) = 0;
virtual unsigned int Size(FileHandle_t file) = 0;
virtual unsigned int Size(const char *pFileName, const char *pPathID = 0) = 0;
virtual void Flush(FileHandle_t file) = 0;
virtual bool Precache(const char *pFileName, const char *pPathID = 0) = 0;