2017-09-09 19:52:35 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-09-09 19:52:35 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetScmDescStr();
|
|
|
|
const std::string& GetScmBranchStr();
|
|
|
|
const std::string& GetScmRevStr();
|
|
|
|
const std::string& GetScmRevGitStr();
|
2024-04-24 11:09:43 +00:00
|
|
|
const std::string& GetUserAgentStr();
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetScmDistributorStr();
|
|
|
|
const std::string& GetScmUpdateTrackStr();
|
|
|
|
const std::string& GetNetplayDolphinVer();
|
2024-03-23 05:18:51 +00:00
|
|
|
int GetScmCommitsAheadMaster();
|
2017-09-09 19:52:35 +00:00
|
|
|
} // namespace Common
|