rpcs3/rpcs3/rpcs3_version.h
Silent 9f678cc47a Fix code relying on initialization order
Allows Debug - LLVM to boot
2020-01-31 11:23:55 +03:00

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();
}