From bdeadc039f3826a3261391c8b8b6aa6275a033df Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 18 Mar 2023 21:37:11 +0100 Subject: [PATCH] Finish 'FindFileAbsoluteList' prototype 'CUtlString' has been implemented recently; finish function prototype. --- r5dev/public/ifilesystem.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/r5dev/public/ifilesystem.h b/r5dev/public/ifilesystem.h index 6fa522e0..4adb5aed 100644 --- a/r5dev/public/ifilesystem.h +++ b/r5dev/public/ifilesystem.h @@ -3,6 +3,8 @@ #include #include +#include +#include #include #include @@ -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& outAbsolutePathNames, const char* pWildCard, const char* pPathID) = 0; //-------------------------------------------------------- // File name and directory operations