mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
13 lines
219 B
C++
13 lines
219 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace rsx
|
|
{
|
|
std::string get_method_name(u32 id);
|
|
|
|
std::add_pointer_t<std::string(u32, u32)> get_pretty_printing_function(u32 id);
|
|
}
|