mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
13 lines
228 B
C++
13 lines
228 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();
|
|
|
|
extern const utils::version version;
|
|
}
|