mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-09 08:35:03 -06: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);
|
|
}
|