You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//===========================================================================// |
|
|
|
#ifndef FILESYSTEM_ENGINE_H |
|
#define FILESYSTEM_ENGINE_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Forward declarations |
|
//----------------------------------------------------------------------------- |
|
class IFileSystem; |
|
class CSysModule; |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Filesystem interface |
|
//----------------------------------------------------------------------------- |
|
extern IFileSystem *g_pFileSystem; |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Loads DLLs through the file system (used by steam) |
|
//----------------------------------------------------------------------------- |
|
CSysModule *FileSystem_LoadModule(const char *path); |
|
void FileSystem_UnloadModule(CSysModule *pModule); |
|
|
|
void FileSystem_SetWhitelistSpewFlags(); |
|
|
|
#endif // FILESYSTEM_ENGINE_H
|
|
|