mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-07 02:28:22 +00:00
Update IFileSystem.
This commit is contained in:
parent
fd249f1919
commit
7ba42dff44
@ -513,6 +513,8 @@ public:
|
||||
// If there are currently no search paths with the specified path ID, then it will still
|
||||
// remember it in case you add search paths with this path ID.
|
||||
virtual void MarkPathIDByRequestOnly( const char *pPathID, bool bRequestOnly ) = 0;
|
||||
|
||||
virtual bool BUnknown() = 0;
|
||||
|
||||
// converts a partial path into a full path
|
||||
virtual const char *RelativePathToFullPath( const char *pFileName, const char *pPathID, char *pLocalPath, int localPathBufferSize, PathTypeFilter_t pathFilter = FILTER_NONE, PathTypeQuery_t *pPathType = NULL ) = 0;
|
||||
|
||||
@ -276,6 +276,8 @@ public:
|
||||
{ return m_pFileSystemPassThru->CheckVPKFileHash( PackFileID, nPackFileNumber, nFileFraction, md5Value ); }
|
||||
virtual void GetVPKFileStatisticsKV( KeyValues *pKV )
|
||||
{ m_pFileSystemPassThru->GetVPKFileStatisticsKV( pKV ); }
|
||||
|
||||
virtual bool BUnknown() { return m_pFileSystemPassThru->BUnknown(); }
|
||||
|
||||
protected:
|
||||
IFileSystem *m_pFileSystemPassThru;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user