mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 00:30:18 +01:00
13 lines
285 B
C++
13 lines
285 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace rsx
|
|
{
|
|
std::pair<std::string_view, std::string_view> get_method_name(u32 id, std::string& result_str);
|
|
|
|
std::add_pointer_t<void(std::string&, u32, u32)> get_pretty_printing_function(u32 id);
|
|
}
|