2020-12-05 13:08:24 +01:00
|
|
|
#pragma once
|
2016-05-07 21:38:52 +03:00
|
|
|
#include <string>
|
|
|
|
|
#include <Utilities/version.h>
|
|
|
|
|
|
|
|
|
|
namespace rpcs3
|
|
|
|
|
{
|
2020-02-12 23:52:11 +03:00
|
|
|
std::string_view get_branch();
|
2020-03-27 06:37:27 -07:00
|
|
|
std::string_view get_full_branch();
|
2019-09-11 09:55:43 +02:00
|
|
|
std::pair<std::string, std::string> get_commit_and_hash();
|
2020-01-30 22:03:36 +01:00
|
|
|
const utils::version& get_version();
|
2020-02-20 03:55:25 +01:00
|
|
|
std::string get_version_and_branch();
|
2022-04-14 22:32:45 +02:00
|
|
|
std::string get_verbose_version();
|
|
|
|
|
bool is_release_build();
|
|
|
|
|
bool is_local_build();
|
2017-09-20 12:58:34 +03:00
|
|
|
}
|