mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-12 22:14:58 +00:00
12 lines
227 B
C++
12 lines
227 B
C++
#pragma once
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include <Utilities/version.h>
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string get_branch();
|
|
std::pair<std::string, std::string> get_commit_and_hash();
|
|
const utils::version& get_version();
|
|
}
|