rpcsx/rpcs3/rpcs3_version.h

13 lines
289 B
C
Raw Normal View History

2020-12-05 13:08:24 +01:00
#pragma once
#include <string>
#include <Utilities/version.h>
namespace rpcs3
{
std::string_view get_branch();
std::string_view get_full_branch();
2019-09-11 09:55:43 +02:00
std::pair<std::string, std::string> get_commit_and_hash();
const utils::version& get_version();
2020-02-20 03:55:25 +01:00
std::string get_version_and_branch();
}