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.

17 lines
570 B

  1. //========= Copyright � 1996-2006, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: System environment utility code
  4. //
  5. //=====================================================================================//
  6. #ifndef ENVIRONMENT_UTILS_H
  7. #define ENVIRONMENT_UTILS_H
  8. #pragma once
  9. #include "tier1/utlvector.h"
  10. #include "tier1/utlstring.h"
  11. // Return system include paths (for a given platform & compiler)
  12. extern bool GetSystemIncludePaths( CUtlVector<CUtlString> &paths, const char *pPlatform, const char *pCompiler );
  13. #endif // ENVIRONMENT_UTILS_H