mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-09 10:10:01 +01:00
New option "Window Title Format" in Misc. Backward compatible with FPS disabler. Make rpcs3:::get_branch() return string_view.
12 lines
232 B
C++
12 lines
232 B
C++
#pragma once
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include <Utilities/version.h>
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string_view get_branch();
|
|
std::pair<std::string, std::string> get_commit_and_hash();
|
|
const utils::version& get_version();
|
|
}
|