2017-09-09 13:52:35 -06:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-09-09 13:52:35 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2022-01-13 16:04:22 -07:00
|
|
|
const std::string& GetScmDescStr();
|
|
|
|
const std::string& GetScmBranchStr();
|
|
|
|
const std::string& GetScmRevStr();
|
|
|
|
const std::string& GetScmRevGitStr();
|
|
|
|
const std::string& GetScmDistributorStr();
|
|
|
|
const std::string& GetScmUpdateTrackStr();
|
|
|
|
const std::string& GetNetplayDolphinVer();
|
2017-09-09 13:52:35 -06:00
|
|
|
} // namespace Common
|