mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
274 B
C++
13 lines
274 B
C++
#pragma once
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include <Utilities/version.h>
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string_view get_branch();
|
|
std::pair<std::string, std::string> get_commit_and_hash();
|
|
const utils::version& get_version();
|
|
std::string get_version_and_branch();
|
|
}
|