mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
14 lines
241 B
C++
14 lines
241 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
std::string GetEnvironment(const std::string& name);
|
|
void SetEnvironment(const std::string& name, const std::string& value);
|
|
|
|
} // namespace util
|
|
} // namespace scwx
|