mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
841f815be3
The only version that is different is the game window due to some formatting. And the update message due to some logic that is better left unchanged.
16 lines
375 B
C++
16 lines
375 B
C++
#pragma once
|
|
#include <string>
|
|
#include <Utilities/version.h>
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string_view get_branch();
|
|
std::string_view get_full_branch();
|
|
std::pair<std::string, std::string> get_commit_and_hash();
|
|
const utils::version& get_version();
|
|
std::string get_version_and_branch();
|
|
std::string get_verbose_version();
|
|
bool is_release_build();
|
|
bool is_local_build();
|
|
}
|