mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 16:49:59 +01:00
12 lines
223 B
C++
12 lines
223 B
C++
#pragma once
|
|
#include <Utilities/types.h>
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace rsx
|
|
{
|
|
std::string get_method_name(const u32 id);
|
|
|
|
std::function<std::string(u32)> get_pretty_printing_function(const u32 id);
|
|
}
|