blob: 7cd4c208e6505127ebd904f84bc3f32720ca840c (
plain)
1
2
3
4
5
6
7
8
|
//========= Copyright Valve Corporation ============//
#pragma once
#include <string>
std::string GetEnvironmentVariable( const char *pchVarName );
bool GetEnvironmentVariableAsBool( const char *pchVarName, bool bDefault );
bool SetEnvironmentVariable( const char *pchVarName, const char *pchVarValue );
|