From 3d5689c064394e71869e9a24eec1ccb2325d759a Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sat, 30 Jun 2018 08:42:59 -0400 Subject: [PATCH] Missed file in list commit. --- public/filesystem_passthru.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/filesystem_passthru.h b/public/filesystem_passthru.h index d4175673..536aea93 100644 --- a/public/filesystem_passthru.h +++ b/public/filesystem_passthru.h @@ -126,8 +126,8 @@ public: va_end( marker ); return m_pFileSystemPassThru->FPrintf( file, "%s", str ); } - virtual CSysModule *LoadModule( const char *pFileName, const char *pPathID, bool bValidatedDllOnly ) { return m_pFileSystemPassThru->LoadModule( pFileName, pPathID, bValidatedDllOnly ); } - virtual void UnloadModule( CSysModule *pModule ) { m_pFileSystemPassThru->UnloadModule( pModule ); } + virtual HMODULE *LoadModule( const char *pFileName, const char *pPathID, bool bValidatedDllOnly ) { return m_pFileSystemPassThru->LoadModule( pFileName, pPathID, bValidatedDllOnly ); } + virtual void UnloadModule( HMODULE *pModule ) { m_pFileSystemPassThru->UnloadModule( pModule ); } virtual const char *FindFirst( const char *pWildCard, FileFindHandle_t *pHandle ) { return m_pFileSystemPassThru->FindFirst( pWildCard, pHandle ); } virtual const char *FindNext( FileFindHandle_t handle ) { return m_pFileSystemPassThru->FindNext( handle ); } virtual bool FindIsDirectory( FileFindHandle_t handle ) { return m_pFileSystemPassThru->FindIsDirectory( handle ); }