Finish 'FindFileAbsoluteList' prototype

'CUtlString' has been implemented recently; finish function prototype.
This commit is contained in:
Kawe Mazidjatari 2023-03-18 21:37:11 +01:00
parent fcf99d8f78
commit bdeadc039f

View File

@ -3,6 +3,8 @@
#include <tier0/annotations.h>
#include <tier0/threadtools.h>
#include <tier1/utlvector.h>
#include <tier1/utlstring.h>
#include <public/ipackedstore.h>
#include <public/appframework/iappsystem.h>
@ -262,7 +264,7 @@ public:
// Searches for a file in all paths and results absolute path names for the file, works in pack files (zip and vpk) too
// Lets you search for something like sound/sound.cache and get a list of every sound cache
virtual void FindFileAbsoluteList(void* outAbsolutePathNames, const char* pWildCard, const char* pPathID) = 0; // !TODO: First param = 'CUtlVector< CUtlString >&'.
virtual void FindFileAbsoluteList(CUtlVector<CUtlString>& outAbsolutePathNames, const char* pWildCard, const char* pPathID) = 0;
//--------------------------------------------------------
// File name and directory operations