Team Fortress 2 Source Code as on 22/4/2020
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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //===========================================================================//
  7. #ifndef FILESYSTEM_ENGINE_H
  8. #define FILESYSTEM_ENGINE_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. //-----------------------------------------------------------------------------
  13. // Forward declarations
  14. //-----------------------------------------------------------------------------
  15. class IFileSystem;
  16. class CSysModule;
  17. //-----------------------------------------------------------------------------
  18. // Filesystem interface
  19. //-----------------------------------------------------------------------------
  20. extern IFileSystem *g_pFileSystem;
  21. //-----------------------------------------------------------------------------
  22. // Loads DLLs through the file system (used by steam)
  23. //-----------------------------------------------------------------------------
  24. CSysModule *FileSystem_LoadModule(const char *path);
  25. void FileSystem_UnloadModule(CSysModule *pModule);
  26. void FileSystem_SetWhitelistSpewFlags();
  27. #endif // FILESYSTEM_ENGINE_H