rpcsx/rpcs3/rpcs3_version.h

16 lines
391 B
C
Raw Permalink Normal View History

2020-12-05 13:08:24 +01:00
#pragma once
#include <string>
#include <util/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();
std::string get_verbose_version();
bool is_release_build();
bool is_local_build();
} // namespace rpcs3