Counter Strike : Global Offensive Source Code
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
1018 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $Workfile: $
  6. // $Date: $
  7. // $NoKeywords: $
  8. //=============================================================================//
  9. #ifndef IFILESYSTEM_H
  10. #define IFILESYSTEM_H
  11. #ifdef _WIN32
  12. #pragma once
  13. #endif
  14. #include "interface.h"
  15. class IFileSystem;
  16. //-----------------------------------------------------------------------------
  17. // Loads, unloads the file system DLL
  18. //-----------------------------------------------------------------------------
  19. bool FileSystem_LoadFileSystemModule( void );
  20. void FileSystem_UnloadFileSystemModule( void );
  21. CSysModule * FileSystem_LoadModule( const char* path );
  22. void FileSystem_UnloadModule( CSysModule *pModule );
  23. bool FileSystem_Init( );
  24. void FileSystem_Shutdown( void );
  25. // Sets the file system search path based on the game directory
  26. bool FileSystem_SetGameDirectory( char const* pGameDir );
  27. extern IFileSystem *g_pFileSystem;
  28. #endif // IFILESYSTEM_H