2017-09-09 21:52:35 +02:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-09-09 21:52:35 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2022-01-14 00:04:22 +01: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();
|
2024-03-23 06:18:51 +01:00
|
|
|
int GetScmCommitsAheadMaster();
|
2017-09-09 21:52:35 +02:00
|
|
|
} // namespace Common
|