From 7200d05f09d86ff7a6a25503a35bcc51a147caf7 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Wed, 10 Sep 2014 20:39:51 -0400 Subject: [PATCH] Update IFileSystem. --- public/filesystem.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/filesystem.h b/public/filesystem.h index 986a8be7..92dc130f 100644 --- a/public/filesystem.h +++ b/public/filesystem.h @@ -556,6 +556,9 @@ public: // Returns true on success ( based on current list of search paths, otherwise false if // it can't be resolved ) virtual bool FullPathToRelativePath( const char *pFullpath, char *pRelative, int maxlen ) = 0; + + // Returns true on successfully retrieve case-sensitive full path, otherwise false + virtual bool GetCaseCorrectFullPath_Ptr( const char *pFullPath, maxLenInChars char *pDest, int maxLenInChars ) = 0; // Gets the current working directory virtual bool GetCurrentDirectory( char* pDirectory, int maxlen ) = 0;