2020-12-05 13:08:24 +01:00
|
|
|
#pragma once
|
2016-05-07 20:38:52 +02:00
|
|
|
#include <string>
|
2025-04-08 18:46:57 +02:00
|
|
|
#include <util/version.h>
|
2016-05-07 20:38:52 +02:00
|
|
|
|
|
|
|
|
namespace rpcs3
|
|
|
|
|
{
|
2020-02-12 21:52:11 +01:00
|
|
|
std::string_view get_branch();
|
2020-03-27 14:37:27 +01: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();
|
2023-12-28 21:30:05 +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();
|
2025-04-05 21:50:45 +02:00
|
|
|
} // namespace rpcs3
|