2020-12-15 09:27:44 -04:00
|
|
|
// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
|
2019-07-16 08:43:32 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-12-15 09:27:44 -04:00
|
|
|
// BEGIN EPIC MOD
|
2019-07-16 08:43:32 -04:00
|
|
|
#include "CoreTypes.h"
|
|
|
|
|
#include <string>
|
2020-12-15 09:27:44 -04:00
|
|
|
// END EPIC MOD
|
2019-07-16 08:43:32 -04:00
|
|
|
|
|
|
|
|
namespace environment
|
|
|
|
|
{
|
|
|
|
|
// Removes a variable from the environment of the calling process.
|
|
|
|
|
void RemoveVariable(const wchar_t* variable);
|
|
|
|
|
|
|
|
|
|
// Sets a variable in the environment of the calling process.
|
|
|
|
|
void SetVariable(const wchar_t* variable, const wchar_t* value);
|
|
|
|
|
|
|
|
|
|
// Gets a variable from the environment of the calling process.
|
|
|
|
|
std::wstring GetVariable(const wchar_t* variable, const wchar_t* defaultValue);
|
|
|
|
|
}
|